This is my quite simple Prisma 3 schema for a dashboard application
generator client {
provider = "prisma-client-js"
}
datasource db {
provider = "postgresql"
url = env("DATABASE_URL")
}
model User {
id String @id @default(uuid())
projects Project[]
owner Project[] @relation("owner")
likes Project[] @relation("likes")
}
model Project {
id String @id @default(uuid())
users User[]
owner User @relation("owner", fields: [ownerId], references: [id])
ownerId String
likes User[] @relation("likes", fields: [likesId], references: [id])
likesId String
}
It works as expected but I'm interested if I could make it more concise
In order to track owner
and likes
to Project model, I had to add:
- Relations description
- Redundant service fields
ownerId
andlikesId
for disambiguation - Redundant service fields
owner
andlikes
to User model
Is it possible to make it a little bit less verbose?
What if I would need to add 3-4 additional relation fields?