discourse/db/migrate/20220323141645_remove_polling_site_settings.rb
Alan Guo Xiang Tan d0c2eb3359
DEV: Drop enable_long_polling and long_polling_interval settings (#16323)
Scheduled to drop in 2.9.

Co-authored-by: Loïc Guitaut <loic@discourse.org>
2022-03-30 16:32:40 +08:00

13 lines
329 B
Ruby

# frozen_string_literal: true
class RemovePollingSiteSettings < ActiveRecord::Migration[6.1]
def up
execute "DELETE FROM site_settings WHERE name = 'enable_long_polling'"
execute "DELETE FROM site_settings WHERE name = 'long_polling_interval'"
end
def down
raise ActiveRecord::IrreversibleMigration
end
end