discourse/db/migrate/20130610201033_add_reply_key_to_email_logs.rb
Robin Ward e29f4a3496 Work in Progress: Reply By Email:
- Add support classes and settings to enable reply by email
- Split out Email builder to be more OO, add many specs
2013-06-13 12:39:56 -04:00

6 lines
175 B
Ruby

class AddReplyKeyToEmailLogs < ActiveRecord::Migration
def change
add_column :email_logs, :reply_key, :string, limit: 32
add_index :email_logs, :reply_key
end
end