Kind: Database Model
Source: atloria-monorepo/libs/database/prisma/schema.prisma
Fields
| Field | Type | Required | Key |
|---|---|---|---|
id | String | ✓ | PK |
organizationId | String | ✓ | |
type | String | ✓ | |
amount | Int | ✓ | |
balanceBefore | Int | ✓ | |
balanceAfter | Int | ✓ | |
referenceType | String | - | |
referenceId | String | - | |
description | String | - | |
userId | String | - | |
createdAt | DateTime | ✓ |
Diagram
mermaiderDiagram CreditTransaction { id String [PK] organizationId String type String amount Int balanceBefore Int balanceAfter Int referenceType String? referenceId String? description String? userId String? createdAt DateTime }
Was this page helpful?