# DocumentRevision

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

## Fields

| Field | Type | Required | Key |
|---|---|---|---|
| `id` | `String` | ✓ | PK |
| `documentId` | `String` | ✓ |  |
| `content` | `String` | ✓ |  |
| `title` | `String` | ✓ |  |
| `metadata` | `Json` | - |  |
| `changeType` | `String` | ✓ |  |
| `createdById` | `String` | ✓ |  |
| `createdAt` | `DateTime` | ✓ |  |

## Diagram

```mermaid
erDiagram
    DocumentRevision {
        id String [PK]
        documentId String
        content String
        title String
        metadata Json?
        changeType String
        createdById String
        createdAt DateTime
    }
    DocumentRevision ||--|| Document : ""
    DocumentRevision ||--|| User : ""
```

## Relationships

- HAS_ONE → `Document`
- HAS_ONE → `User`

## Referenced By

- `User` (HAS_ONE)
