9 lines
254 B
Ruby
9 lines
254 B
Ruby
class AddStatusToMilestones < ActiveRecord::Migration
|
|
disable_ddl_transaction!
|
|
|
|
def change
|
|
add_column :budget_investment_milestones, :status_id, :integer
|
|
add_index :budget_investment_milestones, :status_id, algorithm: :concurrently
|
|
end
|
|
end
|