Prisma requires explicit relation names when you have multiple relations between the same two models—in this case, Game and User. Right now, Prisma can't tell which relation is which, hence the ambiguity error.
To fix this, you just need to name the relations explicitly using @relation(name: "RelationName").