diff --git a/db/migrate/20141014191645_fix_tos_name.rb b/db/migrate/20141014191645_fix_tos_name.rb new file mode 100644 index 00000000000..ff8ac0aa18e --- /dev/null +++ b/db/migrate/20141014191645_fix_tos_name.rb @@ -0,0 +1,6 @@ +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