# frozen_string_literal: true
class AddReplyKeyToEmailLogs < ActiveRecord::Migration[4.2]
def change
add_column :email_logs, :reply_key, :string, limit: 32
add_index :email_logs, :reply_key
end