mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 01:22:36 +08:00
12 lines
424 B
Ruby
12 lines
424 B
Ruby
class MigrateDisableEmails < ActiveRecord::Migration[5.1]
|
|
def up
|
|
execute "UPDATE site_settings SET data_type = 7 WHERE name = 'disable_emails';"
|
|
execute "UPDATE site_settings SET value = 'yes' WHERE value = 't' AND name = 'disable_emails';"
|
|
execute "UPDATE site_settings SET value = 'no' WHERE value = 'f' AND name = 'disable_emails';"
|
|
end
|
|
|
|
def down
|
|
raise ActiveRecord::IrreversibleMigration
|
|
end
|
|
end
|