Hey @windkomo 👋 does this section in the docs address your problem? You can migrate your data from the relation table into a foreign key column to turn the relation from a m-n into a 1-n relation with Prisma 2 as well.
w
windkomo
06/09/2020, 12:32 PM
I think it does, wanted to avoid migrating data but I guess this can’t be avoided
windkomo
06/09/2020, 12:32 PM
thanks!
n
nikolasburk
06/09/2020, 12:35 PM
Yeah, unfortunately the relation tables would otherwise force you to use a m-n relation in Prisma 2, so that data migration is the only way to fix this right now 😕
w
windkomo
06/09/2020, 12:43 PM
that’s understandable, thanks for the quick answer!