So I read this issue: #104
But my case is something like this:
model User {
/// @deprecated use userProfile instead
profile @relation(fields: [profileId], references: [id])
// BUT we cannot defined same relation twice in Prisma!!!
userProfile @relation(fields: [profileId], references: [id])
profileId String!
}
Any comment on this?