Skip to content

ExportHistory

reference
1 min readUpdated

Kind: Database Model

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

Fields

FieldTypeRequiredKey
idStringPK
projectIdString
formatReportFormat
periodInt
sectionsString[]
filenameString
fileSizeInt
scheduledReportIdString-
createdByIdString-
createdAtDateTime

Diagram

mermaid
erDiagram
    ExportHistory {
        id String [PK]
        projectId String
        format ReportFormat
        period Int
        sections String[]
        filename String
        fileSize Int
        scheduledReportId String?
        createdById String?
        createdAt DateTime
    }
    ExportHistory ||--|| Project : ""

Relationships

  • HAS_ONE → Project

Was this page helpful?

Download as PDF