Added migration to remove debtags tables

This commit is contained in:
Christoph Haas 2014-12-07 22:31:44 +01:00
parent babc6ccf19
commit 8b9b40fdee

View file

@ -0,0 +1,10 @@
class DropDebtagsTable < ActiveRecord::Migration
def up
drop_table :packages_to_debtags
drop_table :debtags
end
def down
raise ActiveRecord::IrreversibleMigration
end
end