mirror of
https://github.com/discourse/discourse.git
synced 2025-03-09 14:34:35 +00:00
11 lines
202 B
Ruby
11 lines
202 B
Ruby
|
class DropUnusedTables < ActiveRecord::Migration[5.1]
|
||
|
def up
|
||
|
drop_table :category_featured_users
|
||
|
drop_table :versions
|
||
|
end
|
||
|
|
||
|
def down
|
||
|
raise ActiveRecord::IrreversibleMigration
|
||
|
end
|
||
|
end
|