discourse/db/migrate/20180227161818_drop_unused_...

10 lines
207 B
Ruby
Raw Normal View History

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