Skip to content

ProjectDocsSync

reference
1 min readUpdated

Kind: Database Model

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

Fields

FieldTypeRequiredKey
idStringPK
projectIdStringunique
providerString
repoFullNameString
branchString
pathPrefixString
directionString
statusString
errorString-
lastMirroredShaString-
lastSourceShaString-
lastIngestedShaString-
lastMirroredAtDateTime-
lastIngestedAtDateTime-
forcePushRecoveredAtDateTime-
createdByIdString-
createdAtDateTime
updatedAtDateTime

Diagram

mermaid
erDiagram
    ProjectDocsSync {
        id String [PK]
        projectId String [UNIQUE]
        provider String
        repoFullName String
        branch String
        pathPrefix String
        direction String
        status String
        error String?
        lastMirroredSha String?
        lastSourceSha String?
        lastIngestedSha String?
        lastMirroredAt DateTime?
        lastIngestedAt DateTime?
        forcePushRecoveredAt DateTime?
        createdById String?
        createdAt DateTime
        updatedAt DateTime
    }
    ProjectDocsSync ||--|| Project : ""

Relationships

  • HAS_ONE → Project

Was this page helpful?

Download as PDF