discourse-cakeday/db/migrate/20250717093505_persist_cakeday_enabled.rb
Jarek Radosz 2325c95ece
DEV: Persist the current value of cakeday_enabled (#165)
…so that the default can be changed in the future (to `false`) when the plugin is merged into core.
2025-07-17 13:25:16 +02:00

17 lines
517 B
Ruby

# frozen_string_literal: true
# TODO: Comment this migration out when merging the plugin into core
class PersistCakedayEnabled < ActiveRecord::Migration[7.2]
def up
# 5 is bool data_type
DB.exec(<<~SQL, value: SiteSetting.cakeday_enabled ? "t" : "f")
INSERT INTO site_settings(name, data_type, value, created_at, updated_at)
VALUES('cakeday_enabled', 5, :value, NOW(), NOW())
ON CONFLICT (name) DO NOTHING
SQL
end
def down
raise ActiveRecord::IrreversibleMigration
end
end