Skip to content

DocsShareLink

reference
1 min readUpdated

Kind: Database Model

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

Fields

FieldTypeRequiredKey
idStringPK
projectIdString
tokenHashStringunique
labelString-
expiresAtDateTime-
maxUsesInt-
useCountInt
revokedAtDateTime-
createdByIdString
createdAtDateTime

Diagram

mermaid
erDiagram
    DocsShareLink {
        id String [PK]
        projectId String
        tokenHash String [UNIQUE]
        label String?
        expiresAt DateTime?
        maxUses Int?
        useCount Int
        revokedAt DateTime?
        createdById String
        createdAt DateTime
    }
    DocsShareLink ||--|| Project : ""

Relationships

  • HAS_ONE → Project

Was this page helpful?

Download as PDF