0
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2026-08-07 13:19:19 +08:00
discourse/db/migrate/20180716072125_alter_bounce_key_on_email_logs.rb
2023-01-09 11:59:41 +00:00

11 lines
257 B
Ruby
Vendored

# 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