I have a setup in ElysiaJS where my schema files are inside a directory called models, this has worked all along until Prisma 7, now my data models from other schema files are not being detected in
schema.prisma
schema.prisma
when I
generate
generate
.
Below is just an example
model User {id Stringname Stringcompany Company // <= comes from a schema in another file}
model User {id Stringname Stringcompany Company // <= comes from a schema in another file}