2019-02-15 15:39:39 +05:30
|
|
|
class AddGroupIdToMilestones < ActiveRecord::Migration[4.2]
|
2017-09-10 17:25:29 +05:30
|
|
|
DOWNTIME = false
|
|
|
|
|
|
|
|
def up
|
|
|
|
return if column_exists? :milestones, :group_id
|
|
|
|
|
|
|
|
change_column_null :milestones, :project_id, true
|
|
|
|
|
|
|
|
add_column :milestones, :group_id, :integer
|
|
|
|
end
|
|
|
|
|
|
|
|
def down
|
|
|
|
# We cannot rollback project_id not null constraint if there are records
|
|
|
|
# with null values.
|
|
|
|
execute "DELETE from milestones WHERE project_id IS NULL"
|
|
|
|
|
|
|
|
remove_column :milestones, :group_id
|
|
|
|
change_column :milestones, :project_id, :integer, null: false
|
|
|
|
end
|
|
|
|
end
|