Skip to content

OrganizationCredit

reference
1 min readUpdated

Kind: Database Model

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

Fields

FieldTypeRequiredKey
idStringPK
organizationIdStringunique
balanceInt
totalPurchasedInt
totalSpentInt
monthlyLimitInt-
alertThresholdInt-
createdAtDateTime
updatedAtDateTime

Diagram

mermaid
erDiagram
    OrganizationCredit {
        id String [PK]
        organizationId String [UNIQUE]
        balance Int
        totalPurchased Int
        totalSpent Int
        monthlyLimit Int?
        alertThreshold Int?
        createdAt DateTime
        updatedAt DateTime
    }

Was this page helpful?

Download as PDF