discourse/db/migrate/20120809201855_migrate_book...

11 lines
228 B
Ruby
Raw Normal View History

2013-02-05 14:16:51 -05:00
class MigrateBookmarksToPostActions < ActiveRecord::Migration
def up
drop_table "bookmarks"
end
def down
# I can reverse this, but not really worth the work
raise ActiveRecord::IrreversibleMigration
2013-02-05 14:16:51 -05:00
end
end