mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 03:54:59 +08:00
30990006a9
This reduces chances of errors where consumers of strings mutate inputs and reduces memory usage of the app. Test suite passes now, but there may be some stuff left, so we will run a few sites on a branch prior to merging
36 lines
749 B
Ruby
36 lines
749 B
Ruby
# frozen_string_literal: true
|
|
|
|
class MigrateS3BackupSiteSettings < ActiveRecord::Migration[5.2]
|
|
def up
|
|
execute <<~SQL
|
|
UPDATE site_settings
|
|
SET name = 'backup_location',
|
|
data_type = 7,
|
|
value = 's3'
|
|
WHERE name = 'enable_s3_backups' AND value = 't';
|
|
SQL
|
|
|
|
execute <<~SQL
|
|
DELETE
|
|
FROM site_settings
|
|
WHERE name = 'enable_s3_backups';
|
|
SQL
|
|
end
|
|
|
|
def down
|
|
execute <<~SQL
|
|
UPDATE site_settings
|
|
SET name = 'enable_s3_backups',
|
|
data_type = 5,
|
|
value = 't'
|
|
WHERE name = 'backup_location' AND value = 's3';
|
|
SQL
|
|
|
|
execute <<~SQL
|
|
DELETE
|
|
FROM site_settings
|
|
WHERE name = 'backup_location';
|
|
SQL
|
|
end
|
|
end
|