discourse/db/migrate/20180519053933_delete_confi...

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
565 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class DeleteConfirmOldEmailTemplateOverrides < ActiveRecord::Migration[5.1]
def up
execute "DELETE FROM translation_overrides WHERE translation_key = 'user_notifications.confirm_old_email.title'"
execute "DELETE FROM translation_overrides WHERE translation_key = 'user_notifications.confirm_old_email.subject_template'"
execute "DELETE FROM translation_overrides WHERE translation_key = 'user_notifications.confirm_old_email.text_body_template'"
end
def down
raise ActiveRecord::IrreversibleMigration
end
end