mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 20:26:35 +08:00
10 lines
207 B
Ruby
10 lines
207 B
Ruby
class DropUnusedTables < ActiveRecord::Migration[5.1]
|
|
def up
|
|
# Delayed drop of tables "category_featured_users" and "versions"
|
|
end
|
|
|
|
def down
|
|
raise ActiveRecord::IrreversibleMigration
|
|
end
|
|
end
|