2018-03-05 23:27:30 +01:00
|
|
|
class DropUnusedTables < ActiveRecord::Migration[5.1]
|
|
|
|
def up
|
2018-03-21 12:07:47 +01:00
|
|
|
# Delayed drop of tables "category_featured_users" and "versions"
|
2018-03-05 23:27:30 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def down
|
|
|
|
raise ActiveRecord::IrreversibleMigration
|
|
|
|
end
|
|
|
|
end
|