# TechnicalStaleEntity

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

## Fields

| Field | Type | Required | Key |
|---|---|---|---|
| `id` | `String` | ✓ | PK |
| `projectId` | `String` | ✓ |  |
| `entityId` | `String` | ✓ |  |
| `createdAt` | `DateTime` | ✓ |  |

## Diagram

```mermaid
erDiagram
    TechnicalStaleEntity {
        id String [PK]
        projectId String
        entityId String
        createdAt DateTime
    }
    TechnicalStaleEntity ||--|| Project : ""
```

## Relationships

- HAS_ONE → `Project`
