Kind: Database Model
Source: atloria-monorepo/libs/database/prisma/schema.prisma
Fields
| Field | Type | Required | Key |
|---|---|---|---|
id | String | ✓ | PK |
name | String | ✓ | |
slug | String | ✓ | |
color | String | ✓ | |
icon | String | ✓ | |
description | String | - | |
isStandard | Boolean | ✓ | |
organizationId | String | - | |
createdAt | DateTime | ✓ | |
updatedAt | DateTime | ✓ |
Diagram
mermaiderDiagram AudienceModel { id String [PK] name String slug String color String icon String description String? isStandard Boolean organizationId String? createdAt DateTime updatedAt DateTime }
Was this page helpful?