mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
84af9d2bff
weird in the admin section.
6 lines
239 B
Ruby
6 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
|