blob: 0124b4b98f7ea9220d9824d493e416e824c9268e (
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
t.datetime :updated_at, precision: 6
end
end
end
|