mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 21:16:08 +08:00
cb824a6b33
This is part of the migration to mini_sql, SqlBuilder.new is being deprecated and replaced with DB.build
9 lines
269 B
Ruby
9 lines
269 B
Ruby
class FixTosName < ActiveRecord::Migration[4.2]
|
|
def up
|
|
I18n.overrides_disabled do
|
|
execute DB.sql_fragment('UPDATE user_fields SET name = ? WHERE name = ?', I18n.t('terms_of_service.title'), I18n.t("terms_of_service.signup_form_message"))
|
|
end
|
|
|
|
end
|
|
end
|