mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 15:48:43 -05:00
10 lines
228 B
Ruby
10 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
|