mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-03 07:58:46 +08:00
17 lines
569 B
Ruby
17 lines
569 B
Ruby
# frozen_string_literal: true
|
|
|
|
# Commented out because this was only required to move this 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
|