discourse/db/migrate/20180717084758_alter_reply_...

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
253 B
Ruby
Raw Normal View History

# 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