debian-mirror-gitlab/db/migrate/20130819182730_add_internal_ids_to_issues_and_mr.rb

7 lines
169 B
Ruby
Raw Normal View History

2014-09-02 18:07:02 +05:30
class AddInternalIdsToIssuesAndMr < ActiveRecord::Migration
def change
add_column :issues, :iid, :integer
add_column :merge_requests, :iid, :integer
end
end