Two Schemas but only one will stay generated at a time
Title is pretty explanatory. I have two schemas for different databases but I can run generate for one schema and then the other schema starts to have error lines in vscode, then generating the other schema swaps the errors to the first schema. Any way to fix this it’s pretty annoying.
4 Replies
Hello @Helix 👋
Can you try providing custom output path for both of your schemas and check if you still get the same error?
Also, what error do you get?
Can you also share your use case? Does having two generated Prisma Clients cause an issue?
https://www.prisma.io/docs/orm/prisma-client/setup-and-configuration/generating-prisma-client#using-a-custom-output-path
Generating Prisma Client | Prisma Documentation
This page explains how to generate Prisma Client. It also provides additional context on the generated client, typical workflows and Node.js configuration.
I have two different database schemas one called aero and one called alec_site that I'm trying to connect to, aero contains the user data & app specific data where alec_site contains other data that I need. I'm not getting any specific errors besides
Property 'vendor_id_walmart' does not exist on type 'PrismaClient<{ datasources: { db: { url: string; }; }; }, never, DefaultArgs>'.
for the alec_site db.
this is the prisma clients
I figured it out!I am glad to hear that you figured out the solution. What was the fix which worked for you?