mirror of
https://github.com/discourse/discourse.git
synced 2025-02-05 19:11:13 +00:00
10 lines
234 B
Ruby
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
|