# TechChatSession

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

## Fields

| Field | Type | Required | Key |
|---|---|---|---|
| `id` | `String` | ✓ | PK |
| `projectId` | `String` | ✓ |  |
| `organizationId` | `String` | - |  |
| `channel` | `String` | ✓ |  |
| `userId` | `String` | - |  |
| `createdAt` | `DateTime` | ✓ |  |
| `lastActiveAt` | `DateTime` | ✓ |  |
| `messages` | `TechChatMessage[]` | ✓ |  |

## Diagram

```mermaid
erDiagram
    TechChatSession {
        id String [PK]
        projectId String
        organizationId String?
        channel String
        userId String?
        createdAt DateTime
        lastActiveAt DateTime
        messages TechChatMessage[]
    }
```

## Referenced By

- `TechChatMessage` (HAS_ONE)
