From 86c9e89461916d5c030d15b08e43cd42bb99014a Mon Sep 17 00:00:00 2001 From: Arthur Gamby Date: Thu, 20 Nov 2025 16:06:08 +0100 Subject: [PATCH 1/2] docs: specify prisma.config.ts file location in upgrade guide --- .../200-upgrading-versions/400-upgrading-to-prisma-7.mdx | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/content/200-orm/800-more/300-upgrade-guides/200-upgrading-versions/400-upgrading-to-prisma-7.mdx b/content/200-orm/800-more/300-upgrade-guides/200-upgrading-versions/400-upgrading-to-prisma-7.mdx index fc9bc9fe13..313b2ee7b3 100644 --- a/content/200-orm/800-more/300-upgrade-guides/200-upgrading-versions/400-upgrading-to-prisma-7.mdx +++ b/content/200-orm/800-more/300-upgrade-guides/200-upgrading-versions/400-upgrading-to-prisma-7.mdx @@ -228,6 +228,12 @@ Prisma Config is now the default place for configuring how the Prisma CLI intera database. You now configure your database URL, schema location, migration output, and custom seed scripts. +:::info + +The `prisma.config.ts` file should be placed at the **root of your project** (where your `package.json` is located). + +::: + ```ts import 'dotenv/config' import { defineConfig, env } from 'prisma/config' From 24cfde327a4bb6f6944106db79284ab706631b8f Mon Sep 17 00:00:00 2001 From: Nurul Sundarani Date: Thu, 20 Nov 2025 21:26:01 +0530 Subject: [PATCH 2/2] Fix link --- content/250-postgres/300-database/750-serverless-driver.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/250-postgres/300-database/750-serverless-driver.mdx b/content/250-postgres/300-database/750-serverless-driver.mdx index 74e64f96c8..a6f832ef97 100644 --- a/content/250-postgres/300-database/750-serverless-driver.mdx +++ b/content/250-postgres/300-database/750-serverless-driver.mdx @@ -321,7 +321,7 @@ try { - Requires a Prisma Postgres instance and does not work with [local development](/postgres/database/local-development) databases - Currently in Early Access and not yet recommended for production -- Connection pooling is not currently supported and is planned to be supported when [`@prisma/ppg`](https://www.npmjs.com/package/@prisma/ppg) reaches [General Availability](https://www.prisma.io/docs/orm/more/releases#generally-available-ga) +- Connection pooling is not currently supported and is planned to be supported when [`@prisma/ppg`](https://www.npmjs.com/package/@prisma/ppg) reaches [General Availability](/orm/more/releases#generally-available-ga) ## Learn more