Kind: Database Model
Source: atloria-monorepo/libs/database/prisma/schema.prisma
Fields
| Field | Type | Required | Key |
|---|---|---|---|
id | String | ✓ | PK |
projectId | String | ✓ | unique |
siteName | String | - | |
tagline | String | - | |
logoLightUrl | String | - | |
faviconUrl | String | - | |
primaryColor | String | - | |
accentColor | String | - | |
supportEmail | String | - | |
menuStyle | String | - | |
theme | String | - | |
menuConfig | Json | - |
Diagram
mermaiderDiagram ProjectBranding { id String [PK] projectId String [UNIQUE] siteName String? tagline String? logoLightUrl String? faviconUrl String? primaryColor String? accentColor String? supportEmail String? menuStyle String? theme String? menuConfig Json? }
Was this page helpful?