Skip to content

DocsOutbox

reference
1 min readUpdated

Kind: Database Model

Source: atloria-monorepo/libs/database/prisma/schema.prisma

Fields

FieldTypeRequiredKey
idStringPK
projectIdString
eventTypeString
payloadJson
attemptsInt
processedAtDateTime-
createdAtDateTime

Diagram

mermaid
erDiagram
    DocsOutbox {
        id String [PK]
        projectId String
        eventType String
        payload Json
        attempts Int
        processedAt DateTime?
        createdAt DateTime
    }
    DocsOutbox ||--|| Project : ""

Relationships

  • HAS_ONE → Project

Was this page helpful?

Download as PDF