discourse/db/migrate/20141014191645_fix_tos_name.rb

7 lines
239 B
Ruby
Raw Normal View History

class FixTosName < ActiveRecord::Migration
def up
execute ActiveRecord::Base.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