mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
6 lines
149 B
Ruby
6 lines
149 B
Ruby
|
class AddRejectionMessageToIncomingEmail < ActiveRecord::Migration
|
||
|
def change
|
||
|
add_column :incoming_emails, :rejection_message, :text
|
||
|
end
|
||
|
end
|