aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailbox/db/migrate/20180917164000_create_action_mailbox_tables.rb
blob: 8cf621d7e3223152dd6235e581323514a9d646f3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
class CreateActionMailboxTables < ActiveRecord::Migration[6.0]
  def change
    create_table :action_mailbox_inbound_emails do |t|
      t.integer :status, default: 0, null: false
      t.string  :message_id

      t.datetime :created_at, precision: 6, null: false
      t.datetime :updated_at, precision: 6, null: false
    end
  end
end