debian-mirror-gitlab/db/migrate/20130821090531_add_internal_ids_to_milestones.rb
2016-06-16 23:09:34 +05:30

7 lines
147 B
Ruby

# rubocop:disable all
class AddInternalIdsToMilestones < ActiveRecord::Migration
def change
add_column :milestones, :iid, :integer
end
end