discourse/db/migrate/20170605014820_remove_auto_close_columns_from_topics.rb
2017-06-05 10:59:05 +09:00

10 lines
234 B
Ruby

class RemoveAutoCloseColumnsFromTopics < ActiveRecord::Migration
def up
# Defer dropping of the columns until the new application code has been deployed.
end
def down
raise ActiveRecord::IrreversibleMigration
end
end