# ReaderProjectProfile

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

## Fields

| Field | Type | Required | Key |
|---|---|---|---|
| `id` | `String` | ✓ | PK |
| `accountId` | `String` | ✓ |  |
| `projectId` | `String` | ✓ |  |
| `createdAt` | `DateTime` | ✓ |  |
| `lastSeenAt` | `DateTime` | - |  |

## Diagram

```mermaid
erDiagram
    ReaderProjectProfile {
        id String [PK]
        accountId String
        projectId String
        createdAt DateTime
        lastSeenAt DateTime?
    }
    ReaderProjectProfile ||--|| ReaderAccount : ""
    ReaderProjectProfile ||--|| Project : ""
```

## Relationships

- HAS_ONE → `ReaderAccount`
- HAS_ONE → `Project`
