From 98b09a25c61a47abe47da5e4bbd030172cd5bac0 Mon Sep 17 00:00:00 2001 From: Gideon Adeti Date: Sun, 22 Feb 2026 23:15:03 +0000 Subject: [PATCH] docs(docs): exclude PostgreSQL from "different database" note in NestJS guide The default setup uses @prisma/adapter-pg (PostgreSQL). The note is for users on a different database; listing PostgreSQL there was contradictory. --- apps/docs/content/docs/guides/frameworks/nestjs.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/docs/content/docs/guides/frameworks/nestjs.mdx b/apps/docs/content/docs/guides/frameworks/nestjs.mdx index 995ea103a9..126d0948e8 100644 --- a/apps/docs/content/docs/guides/frameworks/nestjs.mdx +++ b/apps/docs/content/docs/guides/frameworks/nestjs.mdx @@ -65,7 +65,7 @@ npm install @prisma/client @prisma/adapter-pg pg :::info -If you are using a different database provider (PostgreSQL, MySQL, SQL Server), install the corresponding driver adapter package instead of `@prisma/adapter-pg`. For more information, see [Database drivers](/orm/core-concepts/supported-databases/database-drivers). +If you are using a different database provider (MySQL, SQL Server), install the corresponding driver adapter package instead of `@prisma/adapter-pg`. For more information, see [Database drivers](/orm/core-concepts/supported-databases/database-drivers). :::