discourse/db/migrate/20140904215629_rename_trust...

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
478 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class RenameTrustLevelSettings < ActiveRecord::Migration[4.2]
2014-09-04 18:10:55 -04:00
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