Kind: Database Model
Source: atloria-monorepo/libs/database/prisma/schema.prisma
Fields
| Field | Type | Required | Key |
|---|---|---|---|
id | String | ✓ | PK |
projectId | String | ✓ | unique |
headCommit | String | - | |
status | String | ✓ | |
requireReview | Boolean | - | |
lastReconcileAt | DateTime | - | |
createdAt | DateTime | ✓ | |
updatedAt | DateTime | ✓ |
Diagram
mermaiderDiagram ProjectDocsRepo { id String [PK] projectId String [UNIQUE] headCommit String? status String requireReview Boolean? lastReconcileAt DateTime? createdAt DateTime updatedAt DateTime } ProjectDocsRepo ||--|| Project : ""
Relationships
- HAS_ONE →
Project
Was this page helpful?