mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-02 19:44:59 +08:00
11 lines
257 B
Ruby
11 lines
257 B
Ruby
# 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
|