discourse/db/migrate/20170605014820_remove_auto_...

12 lines
270 B
Ruby

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