2019-05-02 18:17:27 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-08-31 00:06:56 -04:00
|
|
|
class CreateIncomingEmails < ActiveRecord::Migration[4.2]
|
2016-01-18 18:57:55 -05:00
|
|
|
def change
|
|
|
|
create_table :incoming_emails do |t|
|
|
|
|
t.integer :user_id
|
|
|
|
t.integer :topic_id
|
|
|
|
t.integer :post_id
|
|
|
|
|
|
|
|
t.text :raw
|
|
|
|
t.text :error
|
|
|
|
|
|
|
|
t.text :message_id
|
|
|
|
t.text :from_address
|
|
|
|
t.text :to_addresses
|
|
|
|
t.text :cc_addresses
|
|
|
|
t.text :subject
|
|
|
|
|
|
|
|
t.timestamps null: false
|
|
|
|
end
|
|
|
|
|
|
|
|
add_index :incoming_emails, :created_at
|
|
|
|
add_index :incoming_emails, :message_id
|
|
|
|
add_index :incoming_emails, :error
|
|
|
|
end
|
|
|
|
end
|