mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-06-19 05:35:40 +08:00
13 lines
276 B
Ruby
Vendored
13 lines
276 B
Ruby
Vendored
# frozen_string_literal: true
|
|
class RemoveOldSettings < ActiveRecord::Migration[7.2]
|
|
def up
|
|
execute <<~SQL
|
|
DELETE FROM site_settings
|
|
WHERE name IN ('ai_bot_enabled_chat_bots')
|
|
SQL
|
|
end
|
|
|
|
def down
|
|
raise ActiveRecord::IrreversibleMigration
|
|
end
|
|
end
|