# GithubInstallation

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

## Fields

| Field | Type | Required | Key |
|---|---|---|---|
| `id` | `String` | ✓ | PK |
| `installationId` | `BigInt` | ✓ | unique |
| `accountLogin` | `String` | ✓ |  |
| `accountType` | `String` | ✓ |  |
| `organizationId` | `String` | - |  |
| `repositories` | `Json` | - |  |
| `createdAt` | `DateTime` | ✓ |  |
| `updatedAt` | `DateTime` | ✓ |  |

## Diagram

```mermaid
erDiagram
    GithubInstallation {
        id String [PK]
        installationId BigInt [UNIQUE]
        accountLogin String
        accountType String
        organizationId String?
        repositories Json?
        createdAt DateTime
        updatedAt DateTime
    }
```
