discourse/db/migrate/20120809201855_migrate_bookmarks_to_post_actions.rb
2014-05-14 20:47:21 +05:30

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::IrreversibleMigration
end
end