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
|
2014-05-04 14:15:38 -04:00
|
|
|
raise ActiveRecord::IrreversibleMigration
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
end
|