mirror of
https://github.com/discourse/discourse.git
synced 2025-09-06 10:50:21 +08:00
9 lines
226 B
Ruby
9 lines
226 B
Ruby
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
|