mirror of
https://github.com/discourse/discourse.git
synced 2025-06-05 12:00:12 +08:00
FIX: migrate trust level site settings
This commit is contained in:
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
|
Reference in New Issue
Block a user