Kind: Database Model
Source: atloria-monorepo/libs/database/prisma/schema.prisma
Fields
| Field | Type | Required | Key |
|---|---|---|---|
id | String | ✓ | PK |
projectId | String | ✓ | |
organizationId | String | - | |
channel | String | ✓ | |
userId | String | - | |
createdAt | DateTime | ✓ | |
lastActiveAt | DateTime | ✓ | |
messages | TechChatMessage[] | ✓ |
Diagram
mermaiderDiagram TechChatSession { id String [PK] projectId String organizationId String? channel String userId String? createdAt DateTime lastActiveAt DateTime messages TechChatMessage[] }
Referenced By
TechChatMessage(HAS_ONE)
Was this page helpful?