Nowadays, almost everyone works in a microservices environment.
IMHO Prisma just partially support it.
The most common patterns to enable data persistence in microservices:
• CQRS + event sourcing
• Database per service
• Shared database per service
The shared database per service is very common, and can be achieved via private table or
private schemas. Prisma doesnt support private schemas (as can be seen in this issue
https://github.com/prisma/prisma/issues/1122).