Files
nairobi/db/migrate/20191108173350_remove_old_milestone_tables.rb
Javi Martín 56c797348c Remove old milestone tables
These tables are obsolete since commit c0f6fa18, and their content was
migrated in version 0.18 with the task added in commit 4c3dadf1.
2019-11-08 18:57:54 +01:00

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