DEV: Remove experimental setting row for chat threads (#22730)
This commit is contained in:
parent
0aa524821e
commit
807390bb93
|
@ -0,0 +1,11 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
class RemoveExperimentalSiteSettingForThreads < ActiveRecord::Migration[7.0]
|
||||
def up
|
||||
execute "DELETE FROM site_settings WHERE name='enable_experimental_chat_threaded_discussions'"
|
||||
end
|
||||
|
||||
def down
|
||||
raise ActiveRecord::IrreversibleMigration
|
||||
end
|
||||
end
|
Loading…
Reference in New Issue