# CodeSymbol

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

## Fields

| Field | Type | Required | Key |
|---|---|---|---|
| `id` | `String` | ✓ | PK |
| `documentId` | `String` | ✓ |  |
| `name` | `String` | ✓ |  |
| `type` | `String` | ✓ |  |
| `line` | `Int` | ✓ |  |
| `signature` | `String` | - |  |
| `docstring` | `String` | - |  |
| `createdAt` | `DateTime` | ✓ |  |

## Diagram

```mermaid
erDiagram
    CodeSymbol {
        id String [PK]
        documentId String
        name String
        type String
        line Int
        signature String?
        docstring String?
        createdAt DateTime
    }
    CodeSymbol ||--|| Document : ""
```

## Relationships

- HAS_ONE → `Document`
