# WhiteLabelConfig

**Kind:** Database Model

**Source:** [`atloria-monorepo/libs/database/prisma/schema.prisma`](https://github.com/sherkety/atloria/blob/main/atloria-monorepo/libs/database/prisma/schema.prisma#L2313)

## Fields

| Field | Type | Required | Key |
|---|---|---|---|
| `id` | `String` | ✓ | PK |
| `organizationId` | `String` | ✓ | unique |
| `customDomain` | `String` | - |  |
| `logoUrl` | `String` | - |  |
| `faviconUrl` | `String` | - |  |
| `primaryColor` | `String` | ✓ |  |
| `fontFamily` | `String` | ✓ |  |
| `hidePoweredBy` | `Boolean` | ✓ |  |
| `customFooter` | `String` | - |  |
| `createdAt` | `DateTime` | ✓ |  |
| `updatedAt` | `DateTime` | ✓ |  |

## Diagram

```mermaid
erDiagram
    WhiteLabelConfig {
        id String [PK]
        organizationId String [UNIQUE]
        customDomain String?
        logoUrl String?
        faviconUrl String?
        primaryColor String
        fontFamily String
        hidePoweredBy Boolean
        customFooter String?
        createdAt DateTime
        updatedAt DateTime
    }
    WhiteLabelConfig ||--|| Organization : ""
```

## Relationships

- HAS_ONE → `Organization`
