blob: 85e19bc3c6e453c4d2a1a0503ba3599b4e8754f5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
class CreateActionMailboxTables < ActiveRecord::Migration[5.2]
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
t.datetime :updated_at, precision: 6
end
end
end
|