mirror of
https://github.com/discourse/discourse.git
synced 2025-02-07 11:58:27 +00:00
10 lines
222 B
Ruby
10 lines
222 B
Ruby
class AlterReplyKeyOnEmailLogs < ActiveRecord::Migration[5.2]
|
|
def up
|
|
change_column :email_logs, :reply_key, 'uuid USING reply_key::uuid'
|
|
end
|
|
|
|
def down
|
|
change_column :email_logs, :reply_key, :string
|
|
end
|
|
end
|