summaryrefslogtreecommitdiff
path: root/db/migrate/20130819182730_add_internal_ids_to_issues_and_mr.rb
blob: 0e0e78b0f0d28fa53507fca50a610a43044ba7ed (plain)
1
2
3
4
5
6
7
# rubocop:disable all
class AddInternalIdsToIssuesAndMr < ActiveRecord::Migration
  def change
    add_column :issues, :iid, :integer
    add_column :merge_requests, :iid, :integer
  end
end