mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 23:48:45 +08:00
11 lines
228 B
Ruby
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
|