Kind: Database Model
Source: atloria-monorepo/libs/database/prisma/schema.prisma
Fields
| Field | Type | Required | Key |
|---|---|---|---|
id | String | ✓ | PK |
email | String | ✓ | unique |
createdAt | DateTime | ✓ | |
lastSeenAt | DateTime | - | |
profiles | ReaderProjectProfile[] | ✓ | |
keys | ReaderApiKey[] | ✓ |
Diagram
mermaiderDiagram ReaderAccount { id String [PK] email String [UNIQUE] createdAt DateTime lastSeenAt DateTime? profiles ReaderProjectProfile[] keys ReaderApiKey[] }
Referenced By
ReaderProjectProfile(HAS_ONE)ReaderApiKey(HAS_ONE)
Was this page helpful?