discourse/db/migrate/20180716072125_alter_bounce...

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

12 lines
257 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class AlterBounceKeyOnEmailLogs < ActiveRecord::Migration[5.2]
def up
change_column :email_logs, :bounce_key, 'uuid USING bounce_key::uuid'
end
def down
change_column :email_logs, :bounce_key, :string
end
end