mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-27 09:36:19 -05:00
FIX: migrate trust level site settings
This commit is contained in:
parent
ea36daf51a
commit
9d340a2e0c
1 changed files with 16 additions and 0 deletions
16
db/migrate/20140904215629_rename_trust_level_settings.rb
Normal file
16
db/migrate/20140904215629_rename_trust_level_settings.rb
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
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
|
Loading…
Reference in a new issue