DB Push automatically creates the table _Table.
Hello, I don't understand; recently, when I run DB Push, it automatically generates tables with the prefix _TABLE. I searched the entire schema but couldn't find those tables. I'm using Planetscale, and this has never happened before. I hope for your assistance.

@prisma/client still points to .prisma/client instead of custom-set output
I recently modified my schema to use the new "prisma-client" provider, and I had to specify an output path for where the generated files will be.
```
generator client {
provider = "prisma-client"
previewFeatures = ["driverAdapters"]...
Multi schema with files next to code? (Per module)
Hey
I really like the fact Prisma allows to split schemas now, but putting all into single folder isn’t perfect.
Is there any way to be able to put each module schema next to its code to make it easier to maintain and develop?
Like having base schema in root/prisma, but then have eg root/src/users/user.prisma, root/src/tasks/task.prisma etc?...
MongoDB Locking Issue
Hello,
I send my requests to the MongoDB server through Prisma, and everything works very normally during the day without any issues. But mostly at night, around midnight to noon (Iran time), this problem occurs where MongoDB seems to lock up and does not perform any operations. I have tested this both with mongosh and Mongo Compass, but the problem still exists. Also, I have not set any specific event or task to run at night, and I don’t do anything special during that time. I am also fairly sure that memory and CPU usage are not low....
Cannot find module '@prisma/client/runtime/query_compiler_bg.postgresql.wasm'
Hi,
I keep getting this very annoying issue that only occurs when I push to Vercel, but not locally. I get:
``2025-08-08T16:06:07.964Z [error] # SERVER_ERROR: Error [PrismaClientKnownRequestError]:
Invalid prisma.user.findFirst()` invocation:...Prisma views (for MongoDB) with composite types causes Engine Panic
Hi,
It seems that Composite types are not supported anymore(?) in prisma views with MongoDB
I was upgrading my codebase from Prisma version from 5.19.0 to 6.13.0, I used the upgrade guide on the website....
How to init migration with existing database
I already have a database and there is data in it. Now I want to use Prisma to connect with it .So I do following:
1. Create a schema.prisma file, config datasource and generator
2. Run
prisma db pull to get latest schema
3. Run prisma migrate dev to init migration ...Cannot find module '.prisma/client/default'
Hello everyone,
I just installed Prisma, and after pulling my database schema and generating it, everything worked fine. However, I made some changes and pushed those updates, and since then, I've been encountering this error:
`Cannot find module '.prisma/client/default'...
Prisma Optimize Setup Error
I am receiving the following error after trying to setup prisma optimize in a monorepo.
SyntaxError: The requested module 'prisma-instrumentation-5-x' does not provide an export named 'PrismaInstrumentation'
My versions are as follows...
Mulitple index for json field
I want to add index per json field's sub field
I am using MongoDB with Prisma
Here is the schema definition
```
model Chat {...
TypedSQL Cannot Determine Data Parameter for Array
I'm attempting to create a filter system that uses
$queryRawTyped() .
My frontend will have 5+ multi-select string filters. Each of these filters is to check if an element has any of the selected values. If the array is empty, it should not filter by that item.
```...Error Message Popup in Prisma Studio
This large unreadable message pops up whenever I try to delete or save any changes

Failed to parse config file at "./prisma.config.ts"
Following the D1 guide here https://www.prisma.io/docs/guides/cloudflare-d1. When trying to migrate by running
npx prisma migrate dev --name init, I get the error failing to parse the config fileAWS Amplify Gen 2 Error Client
Hi, Im tryin to use prisma in my Amplify Gen 2 Function, the binaries are created correctly in local (Mac M4) but when I do npx ampx sandbox and execute the function I receive the following error:
Invalid
prisma.avisos_de_marca.upsert() invocation:
...Prisma causing app crashes
We use prisma 6.13.0 in our node (v22) server and recently have been seeing an issue where some query would fail crashing our server. We suspect it might have something to do with prisma as we see an double free or corruption (out) error right after our server restarts leaving us to think that it's related to some binary and not our node server. Prisma is pretty much the only thing we have there with a binary running.
It seem to have began a bit after we started doing some raw queries with prisma. We also run some background jobs with pgboss that touch some prisma queries as well and we think that could be part of it too.
Do you have any insights on what could be the root cause of the double free or corruption (out) error?...
Need Shadow in Prod?
We are self hosting an Encore.ts app and therefore have to run
npx prisma migrate deploy in a seperate container before we start our app. Do you know if we need the shadow db for Prisma to work in prod? Or is that just a local concept?Can't prisma generate
D:\Blog>yarn prisma generate
Environment variables loaded from .env
Prisma schema loaded from prisma\schema.prisma
Error: Could not resolve prisma and @prisma/client in the current project. Please install them with
yarn add prisma -D and yarn add @prisma/client, and rerun yarn dlx "prisma generate" 🙏....