# Profile

**Kind:** Database Model

**Source:** [`atloria-monorepo/apps/database-parser/test/fixtures/user.entity.ts`](https://github.com/sherkety/atloria/blob/main/atloria-monorepo/apps/database-parser/test/fixtures/user.entity.ts#L96)

## Fields

| Field | Type | Required | Key |
|---|---|---|---|
| `id` | `uuid` | ✓ | PK |
| `bio` | `text` | - |  |
| `avatar` | `varchar` | - |  |
| `userId` | `uuid` | ✓ |  |

## Diagram

```mermaid
erDiagram
    Profile {
        id uuid [PK, AUTO]
        bio text?
        avatar varchar?
        userId uuid
    }
    Profile ||--|| User : "userId"
```

## Relationships

- HAS_ONE → `User`

## Referenced By

- `User` (HAS_ONE)
