1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/actionmailbox/db/migrate/20180917164000_create_action_mailbox_tables.rb

12 lines
313 B
Ruby
Raw Normal View History

class CreateActionMailboxTables < ActiveRecord::Migration[5.2]
2018-09-17 19:55:07 -04:00
def change
create_table :action_mailbox_inbound_emails do |t|
2018-09-17 19:55:07 -04:00
t.integer :status, default: 0, null: false
t.string :message_id
2018-09-17 19:55:07 -04:00
t.datetime :created_at, precision: 6
t.datetime :updated_at, precision: 6
end
end
end