mirror of
https://github.com/discourse/discourse.git
synced 2024-12-02 13:39:36 -06:00
10 lines
239 B
Ruby
10 lines
239 B
Ruby
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
|