mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-04-30 07:07:10 +08:00
11 lines
253 B
Ruby
11 lines
253 B
Ruby
# 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
|