discourse/db/migrate/20180717084758_alter_reply_key_on_email_logs.rb
2018-07-17 17:05:42 +08:00

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