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