mirror of
https://github.com/discourse/discourse.git
synced 2025-02-13 01:56:31 +08: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
|