Kind: Database Model
Source: atloria-monorepo/libs/database/prisma/schema.prisma
Fields
| Field | Type | Required | Key |
|---|---|---|---|
id | String | ✓ | PK |
organizationId | String | ✓ | unique |
balance | Int | ✓ | |
totalPurchased | Int | ✓ | |
totalSpent | Int | ✓ | |
monthlyLimit | Int | - | |
alertThreshold | Int | - | |
createdAt | DateTime | ✓ | |
updatedAt | DateTime | ✓ |
Diagram
mermaiderDiagram 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?