2019-05-03 08:17:27 +10:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
2017-08-31 12:06:56 +08:00
|
|
|
class AddReplyKeyToEmailLogs < ActiveRecord::Migration[4.2]
|
2013-06-10 16:46:08 -04:00
|
|
|
def change
|
|
|
|
|
add_column :email_logs, :reply_key, :string, limit: 32
|
|
|
|
|
add_index :email_logs, :reply_key
|
|
|
|
|
end
|
|
|
|
|
end
|