Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20130819182730_add_internal_ids_to_issues_and_mr.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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