Schema could not be found after Prisma 6.6.0 update
Before 6.6.0, prisma generate was working completely fine. Now, it isn't able to find the schema file located in ./prisma/schema/schema.prisma
I tried running the command with --schema to specify the location, and then the following is the result of that:
```
Environment variables loaded from .env...
Prisma Error After Nuxt 3.16.0 & Nitro 2.11.6 Update
Hey everyone,
after updating to Nuxt 3.16.0 and Nitro 2.11.6, I'm getting this error during build related to Prisma: TypeError [ERR_INVALID_MODULE_SPECIFIER]: Invalid module ".prisma" is not a valid package name imported from node_modules/@prisma/client/default.js There's also a deprecation warning:...
after updating to Nuxt 3.16.0 and Nitro 2.11.6, I'm getting this error during build related to Prisma: TypeError [ERR_INVALID_MODULE_SPECIFIER]: Invalid module ".prisma" is not a valid package name imported from node_modules/@prisma/client/default.js There's also a deprecation warning:...
Prisma optimize in a project using the neon adapter fails on Env variable not found: DATABASE_URL
The neon setup works fine, but once I add optimize, I get this error:
The error:
PrismaClientInitializationError: error: Environment variable not found: DATABASE_URL....
still getting Pulse recommendations
I'm still getting fairly consistent Prisma Pulse recommendations after generating my client.
Is this intended? I thought it's discontinued....

new guy with wierd error when deleting a record trough prisma studio
i got this message when deleting a record. same thing happens with prisma postgres.
prisma cli push runs without error, but db on console.prisma.io not updating?
Has this been reported before?
I have followed instruction setup.
My schema.prisma file looks like this:
...
Automatically create SQLite database and run Prisma migrations in Docker for Next.js app
I have a Dockerfile that builds a Next.js application using Prisma with a SQLite database. I'd like to know if there's a recommended or automated way to create the SQLite database file and run the necessary Prisma migrations directly inside the Docker container, before the Next.js app starts. What's the best practice to achieve this setup?
Solution:
Hey ๐
The most common approach is to run Prisma migrations as part of your application startup process. You can modify your Docker container's startup command to run migrations before starting the Next.js application.
You can create a custom startup script or modify your package.json to run migrations before starting the application:...
Possible error in docs?
https://www.prisma.io/docs/guides/nextjs#25-set-up-prisma-client
Here i copied the following:
```import { PrismaClient } from '@prisma/client'
import { withAccelerate } from '@prisma/extension-accelerate'
...
Coolify: MongoDB Replica Set
Does anybody have the "Custom MongoDB Configuration" to resolve the replica set issue?? Kindly help.
Also, if I create replica set on my VPS(via Coolify), all the replica sets are in the same location, then whats the use of it??...
Lost prod data, is there backup?
Hey, I lost my prod data. Is it possible to restore latest snapshot?
Canโt connect to a db
Hi guys, I have two db in a environment and Iโm not able to connect with one of them, even to the prisma studio where a receive a erro 500.
How can I solve this?...
Getting P5000 issue
This request could not be understood by the server: {"type":"UnknownJsonError","body":{"code":"P6002","message":"The provided API Key is invalid. Reason: No Authorization header is present."}} (The request
We were charged $400 and I can't see why!
We have 4 databases.
Development / Staging / Production / Till
All of them had ~100k DB requests. we were billed for 22M requests
Please fix our invoice asap and reimburse us the money....
Issue migrating a vector field
```evelyn % npx prisma migrate dev
Environment variables loaded from .env
Prisma schema loaded from prisma/schema.prisma
Datasource "db": PostgreSQL database "postgres", schema "public" at "aws-0-us-east-1.pooler.supabase.com:5432"
...
fulltext argument missing
Why
@@fulltext argument is missing here? I am using MySQL and "prisma": "^6.1.0"
Docs: https://www.prisma.io/docs/orm/prisma-client/queries/full-text-search...
Custom error becomes normal error
what's the probably reason why my custom classes throws normal error in nextjs ?
```ts
export default class ServerError extends Error {
issues: IError;
...
InitializationError
this is my controller
async function signUp(req: Request, res: Response) {
req.body.password = await hashPassword(req.body.password);
req.body.birthDate = new Date(req.body.birthDate).toISOString();
try {...
