mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 01:58:12 +08:00
11 lines
233 B
Ruby
11 lines
233 B
Ruby
class MigrateBookmarksToPostActions < ActiveRecord::Migration[4.2]
|
|
def up
|
|
drop_table "bookmarks"
|
|
end
|
|
|
|
def down
|
|
# I can reverse this, but not really worth the work
|
|
raise ActiveRecord::IrreversibleMigration
|
|
end
|
|
end
|