2019-05-02 18:17:27 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-07-16 08:05:54 -04:00
|
|
|
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
|