Skip to content

Commit

Permalink
Add action_mailbox_inbound_emails to schema
Browse files Browse the repository at this point in the history
  • Loading branch information
lcreid committed Oct 28, 2023
1 parent 9e36e79 commit e806d05
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions demo/db/schema.rb
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,15 @@
# It's strongly recommended that you check this file into your version control system.

ActiveRecord::Schema.define(version: 20_220_109_230_956) do
create_table "action_mailbox_inbound_emails", force: :cascade do |t|
t.integer "status", default: 0, null: false
t.string "message_id", null: false
t.string "message_checksum", null: false
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.index ["message_id", "message_checksum"], name: "index_action_mailbox_inbound_emails_uniqueness", unique: true
end

create_table "action_text_rich_texts", force: :cascade do |t|
t.string "name", null: false
t.text "body"
Expand Down

0 comments on commit e806d05

Please sign in to comment.