2017-08-31 00:06:56 -04:00
|
|
|
class RemoveAutoCloseColumnsFromTopics < ActiveRecord::Migration[4.2]
|
2017-06-04 21:59:05 -04:00
|
|
|
def up
|
|
|
|
# Defer dropping of the columns until the new application code has been deployed.
|
|
|
|
end
|
|
|
|
|
|
|
|
def down
|
|
|
|
raise ActiveRecord::IrreversibleMigration
|
|
|
|
end
|
|
|
|
end
|