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

20130821090531_add_internal_ids_to_milestones.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e25b8f9166266eb5a465a9c81814cefb83555334 (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddInternalIdsToMilestones < ActiveRecord::Migration
  def change
    add_column :milestones, :iid, :integer
  end
end