Skip to content

ReaderProjectProfile

reference
1 min readUpdated

Kind: Database Model

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

Fields

FieldTypeRequiredKey
idStringPK
accountIdString
projectIdString
createdAtDateTime
lastSeenAtDateTime-

Diagram

mermaid
erDiagram
    ReaderProjectProfile {
        id String [PK]
        accountId String
        projectId String
        createdAt DateTime
        lastSeenAt DateTime?
    }
    ReaderProjectProfile ||--|| ReaderAccount : ""
    ReaderProjectProfile ||--|| Project : ""

Relationships

  • HAS_ONE → ReaderAccount
  • HAS_ONE → Project

Was this page helpful?

Download as PDF