0
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2026-08-06 13:08:40 +08:00
discourse/db/migrate/20180717084758_alter_reply_key_on_email_logs.rb
2023-01-09 11:59:41 +00:00

11 lines
253 B
Ruby
Vendored

# frozen_string_literal: true
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