mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
8a0a103495
We didn't end up using the mailroom metaphor directly, so let's stick with a more conventional naming strategy.
11 lines
313 B
Ruby
11 lines
313 B
Ruby
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
|