mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-27 09:36:19 -05:00
9 lines
515 B
Ruby
9 lines
515 B
Ruby
|
class RenameConfirmTranslationKey < ActiveRecord::Migration
|
||
|
def change
|
||
|
execute "UPDATE translation_overrides SET translation_key = 'user_notifications.confirm_new_email.subject_template'
|
||
|
WHERE translation_key = 'user_notifications.authorize_email.subject_template'"
|
||
|
execute "UPDATE translation_overrides SET translation_key = 'user_notifications.confirm_new_email.text_body_template'
|
||
|
WHERE translation_key = 'user_notifications.authorize_email.text_body_template'"
|
||
|
end
|
||
|
end
|