Kind: Database Model
Source: atloria-monorepo/apps/database-parser/test/fixtures/sample.prisma
Fields
| Field | Type | Required | Key |
|---|---|---|---|
id | String | ✓ | PK |
bio | String | - | |
avatar | String | - | |
userId | String | ✓ | unique |
Diagram
mermaiderDiagram Profile { id String [PK] bio String? avatar String? userId String [UNIQUE] } Profile ||--|| User : "userId"
Relationships
- BELONGS_TO →
User
Referenced By
User(HAS_ONE)
Was this page helpful?