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