Or do i have to manually create the 'middle table'...
# orm-help
p
Or do i have to manually create the 'middle table' like:
Copy code
type UserProject {
  id: ID! @unique
  member: User!
  project: Project!
  role: ProjectRoles!
}
n
You have to create that "middle table"
I'm not sure if adding extra data to the pivot tables is under consideration by the prisma team. Maybe someone can clarify this, please.