Kind: Database Model
Source: atloria-monorepo/libs/database/prisma/schema.prisma
Fields
| Field | Type | Required | Key |
|---|---|---|---|
id | String | ✓ | PK |
projectId | String | ✓ | |
repositoryUrl | String | ✓ | |
branch | String | ✓ | |
provider | String | ✓ | |
status | String | ✓ | |
progress | Int | ✓ | |
options | Json | - | |
result | Json | - | |
errorMessage | String | - | |
autoSync | Boolean | ✓ | |
createdAt | DateTime | ✓ | |
updatedAt | DateTime | ✓ | |
completedAt | DateTime | - |
Diagram
mermaiderDiagram ParsingJob { id String [PK] projectId String repositoryUrl String branch String provider String status String progress Int options Json? result Json? errorMessage String? autoSync Boolean createdAt DateTime updatedAt DateTime completedAt DateTime? }
Was this page helpful?