discourse/db/migrate/20180227161818_drop_unused_tables.rb

10 lines
207 B
Ruby
Raw Normal View History

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