mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05:00
31 lines
696 B
Ruby
31 lines
696 B
Ruby
class SiteSettingCommaToPipe < ActiveRecord::Migration
|
|
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
|