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