Files
grecia/db/migrate/20191031172132_drop_budget_rol_assignments.rb
Javi Martín 184d5fc504 Remove unused model
It was added in commit 74083df1; we're not sure why.
2019-11-01 16:49:14 +01:00

10 lines
183 B
Ruby

class DropBudgetRolAssignments < ActiveRecord::Migration[5.0]
def up
drop_table :budget_rol_assignments
end
def down
fail ActiveRecord::IrreversibleMigration
end
end