These tables are obsolete since commitc0f6fa18, and their content was migrated in version 0.18 with the task added in commit4c3dadf1.
12 lines
289 B
Ruby
12 lines
289 B
Ruby
class RemoveOldMilestoneTables < ActiveRecord::Migration[5.0]
|
|
def up
|
|
drop_table :budget_investment_milestone_translations
|
|
drop_table :budget_investment_statuses
|
|
drop_table :budget_investment_milestones
|
|
end
|
|
|
|
def down
|
|
fail ActiveRecord::IrreversibleMigration
|
|
end
|
|
end
|