discourse/db/migrate/20130610201033_add_reply_ke...

9 lines
211 B
Ruby

# 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
end