2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-07 12:02:53 +08:00
discourse/db/migrate/20140407202158_site_setting_comma_to_pipe.rb

31 lines
701 B
Ruby

class SiteSettingCommaToPipe < ActiveRecord::Migration[4.2]
def up
execute <<SQL
UPDATE site_settings
SET value = replace(value, ',', '|')
WHERE name = 'white_listed_spam_host_domains'
;
SQL
execute <<SQL
UPDATE site_settings
SET value = replace(value, ',', '|')
WHERE name = 'exclude_rel_nofollow_domains'
;
SQL
end
def down
execute <<SQL
UPDATE site_settings
SET value = replace(value, '|', ',')
WHERE name = 'white_listed_spam_host_domains'
;
SQL
execute <<SQL
UPDATE site_settings
SET value = replace(value, '|', ',')
WHERE name = 'exclude_rel_nofollow_domains'
;
SQL
end
end