# DocsPullRequest

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

## Fields

| Field | Type | Required | Key |
|---|---|---|---|
| `id` | `String` | ✓ | PK |
| `projectId` | `String` | ✓ |  |
| `provider` | `String` | ✓ |  |
| `branchName` | `String` | ✓ |  |
| `prNumber` | `Int` | - |  |
| `prUrl` | `String` | - |  |
| `baseBranch` | `String` | ✓ |  |
| `status` | `String` | ✓ |  |
| `pageSlugs` | `Json` | ✓ |  |
| `headSha` | `String` | - |  |
| `errorReason` | `String` | - |  |

## Diagram

```mermaid
erDiagram
    DocsPullRequest {
        id String [PK]
        projectId String
        provider String
        branchName String
        prNumber Int?
        prUrl String?
        baseBranch String
        status String
        pageSlugs Json
        headSha String?
        errorReason String?
    }
```
