Kind: Database Model
Source: atloria-monorepo/libs/database/prisma/schema.prisma
Fields
| Field | Type | Required | Key |
|---|---|---|---|
id | String | ✓ | PK |
accountId | String | ✓ | |
projectId | String | ✓ | |
createdAt | DateTime | ✓ | |
lastSeenAt | DateTime | - |
Diagram
mermaiderDiagram 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?