6 lines
147 B
Ruby
6 lines
147 B
Ruby
# rubocop:disable all
|
|
class AddInternalIdsToMilestones < ActiveRecord::Migration
|
|
def change
|
|
add_column :milestones, :iid, :integer
|
|
end
|
|
end
|