discourse/db/migrate/20120809201855_migrate_book...

11 lines
228 B
Ruby

class MigrateBookmarksToPostActions < ActiveRecord::Migration
def up
drop_table "bookmarks"
end
def down
# I can reverse this, but not really worth the work
raise ActiveRecord::IrriversableMigration
end
end