mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05:00
e29f4a3496
- Add support classes and settings to enable reply by email - Split out Email builder to be more OO, add many specs
6 lines
175 B
Ruby
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
|