@relation field referencing a compound id
Is there a way to have an @relation that points to a compound id on another table?
Consider this scenario:
https://www.prisma.io/docs/orm/prisma-client/special-fields-and-types/working-with-composite-ids-and-constraints
Say we wanted to add a 4th table that looks like this:
I cannot figure out how to set up
like Like? @relation(fields: [likeId], references: [postId, userId], onDelete: Cascade)
since the primary key on the Like
table is an implicit compound id. I cannot map two foreign columns to one column either.
Any ideas?Working with compound IDs and unique constraints (Concepts) | Prism...
How to read, write, and filter by compound IDs and unique constraints.
0 Replies