Kind: Database Model
Source: atloria-monorepo/libs/database/prisma/schema.prisma
Fields
| Field | Type | Required | Key |
|---|---|---|---|
id | String | ✓ | PK |
projectId | String | ✓ | |
email | String | ✓ | |
status | String | ✓ | |
confirmToken | String | ✓ | unique |
unsubscribeToken | String | ✓ | unique |
confirmedAt | DateTime | - | |
createdAt | DateTime | ✓ | |
updatedAt | DateTime | ✓ |
Diagram
mermaiderDiagram ChangelogSubscription { id String [PK] projectId String email String status String confirmToken String [UNIQUE] unsubscribeToken String [UNIQUE] confirmedAt DateTime? createdAt DateTime updatedAt DateTime }
Was this page helpful?