mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 16:18:42 -05:00
7 lines
239 B
Ruby
7 lines
239 B
Ruby
|
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
|