# Board

**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#L2867)

## Fields

| Field | Type | Required | Key |
|---|---|---|---|
| `id` | `String` | ✓ | PK |
| `projectId` | `String` | ✓ |  |
| `name` | `String` | ✓ |  |
| `description` | `String` | - |  |
| `color` | `String` | ✓ |  |
| `isDefault` | `Boolean` | ✓ |  |
| `settings` | `Json` | ✓ |  |

## Diagram

```mermaid
erDiagram
    Board {
        id String [PK]
        projectId String
        name String
        description String?
        color String
        isDefault Boolean
        settings Json
    }
```

## Referenced By

- `User` (HAS_ONE)
- `BoardColumn` (HAS_ONE)
- `BoardCard` (HAS_ONE)
