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