# DocIssueComment

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

## Fields

| Field | Type | Required | Key |
|---|---|---|---|
| `id` | `String` | ✓ | PK |
| `issueId` | `String` | ✓ |  |
| `authorId` | `String` | - |  |
| `body` | `String` | ✓ |  |
| `isInternal` | `Boolean` | ✓ |  |
| `createdAt` | `DateTime` | ✓ |  |
| `updatedAt` | `DateTime` | ✓ |  |

## Diagram

```mermaid
erDiagram
    DocIssueComment {
        id String [PK]
        issueId String
        authorId String?
        body String
        isInternal Boolean
        createdAt DateTime
        updatedAt DateTime
    }
    DocIssueComment ||--|| DocIssueReport : ""
    DocIssueComment ||--|| User : ""
```

## Relationships

- HAS_ONE → `DocIssueReport`
- HAS_ONE → `User`

## Referenced By

- `User` (HAS_ONE)
