mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05:00
16 lines
442 B
Ruby
16 lines
442 B
Ruby
class RenameTrustLevelSettings < ActiveRecord::Migration
|
|
def up
|
|
execute "UPDATE site_settings
|
|
SET name = regexp_replace(name, '^basic_', 'tl1_')"
|
|
|
|
execute "UPDATE site_settings
|
|
SET name = regexp_replace(name, '^regular_', 'tl2_')"
|
|
|
|
execute "UPDATE site_settings
|
|
SET name = regexp_replace(name, '^leader_', 'tl3_')"
|
|
end
|
|
|
|
def down
|
|
raise ActiveRecord::IrreversibleMigration
|
|
end
|
|
end
|