blob: cea05a6437d94ebd626b2ececbcc9f36579377a5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
class CreateActionMailroomTables < ActiveRecord::Migration[5.2]
def change
create_table :action_mailroom_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
|