discourse/db/migrate/20180227161818_drop_unused_tables.rb

10 lines
207 B
Ruby
Raw Normal View History

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