From ef299922b20f0d97659f7f4a418f98539a3e9aca Mon Sep 17 00:00:00 2001 From: Ankur Datta <64993082+ankur-arch@users.noreply.github.com> Date: Fri, 13 Dec 2024 18:25:01 +0600 Subject: [PATCH 1/2] Update 03-generators.mdx (#6511) * Update 03-generators.mdx * Update content/200-orm/100-prisma-schema/10-overview/03-generators.mdx --------- Co-authored-by: Jon Harrell <4829245+jharrell@users.noreply.github.com> --- .../200-orm/100-prisma-schema/10-overview/03-generators.mdx | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/content/200-orm/100-prisma-schema/10-overview/03-generators.mdx b/content/200-orm/100-prisma-schema/10-overview/03-generators.mdx index b9dfd9b5a9..1740b2c155 100644 --- a/content/200-orm/100-prisma-schema/10-overview/03-generators.mdx +++ b/content/200-orm/100-prisma-schema/10-overview/03-generators.mdx @@ -57,6 +57,12 @@ If you use macOS ARM64 (`darwin-arm64`), then the binary file that was compiled ## Community generators +:::note + +Existing generators or new ones should not be affected if you are using the [`prismaSchemaFolder`](/orm/reference/preview-features/client-preview-features#currently-active-preview-features) preview feature to manage multiple schema files, unless a generator reads the schema manually. + +::: + The following is a list of community created generators. - [`prisma-dbml-generator`](https://notiz.dev/blog/prisma-dbml-generator/): Transforms the Prisma schema into [Database Markup Language](https://dbml.dbdiagram.io/home/) (DBML) which allows for an easy visual representation From 412cfff451c09259d25ff9f027b40a17ec3d76fe Mon Sep 17 00:00:00 2001 From: jnyecode <82028527+jnyecode@users.noreply.github.com> Date: Fri, 13 Dec 2024 19:24:15 +0000 Subject: [PATCH 2/2] Update 200-pgbouncer.mdx (#6524) Fixes the formatting of the pgBouncer page to correctly end the code block --- .../050-databases-connections/200-pgbouncer.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/200-orm/200-prisma-client/000-setup-and-configuration/050-databases-connections/200-pgbouncer.mdx b/content/200-orm/200-prisma-client/000-setup-and-configuration/050-databases-connections/200-pgbouncer.mdx index 5ce505f0a2..2a59b1b447 100644 --- a/content/200-orm/200-prisma-client/000-setup-and-configuration/050-databases-connections/200-pgbouncer.mdx +++ b/content/200-orm/200-prisma-client/000-setup-and-configuration/050-databases-connections/200-pgbouncer.mdx @@ -30,7 +30,7 @@ To use Prisma Client with PgBouncer, add the `?pgbouncer=true` flag to the Postg ```shell postgresql://USER:PASSWORD@HOST:PORT/DATABASE?pgbouncer=true -``` ``` +``` :::info `PORT` specified for PgBouncer pooling is sometimes different from the default `5432` port. Check your database provider docs for the correct port number.