From 4c6958c9a026f248e5895c6c7a1da01ef10f1d4a Mon Sep 17 00:00:00 2001 From: MansurAliKoroglu <43291306+MansurAliKoroglu@users.noreply.github.com> Date: Sat, 6 Sep 2025 14:38:54 +0300 Subject: [PATCH 1/2] Remove migrate option from config reference --- .../200-orm/500-reference/325-prisma-config-reference.mdx | 8 -------- 1 file changed, 8 deletions(-) diff --git a/content/200-orm/500-reference/325-prisma-config-reference.mdx b/content/200-orm/500-reference/325-prisma-config-reference.mdx index 6c4b5ba26f..f8bffe5d73 100644 --- a/content/200-orm/500-reference/325-prisma-config-reference.mdx +++ b/content/200-orm/500-reference/325-prisma-config-reference.mdx @@ -114,14 +114,6 @@ Configures how Prisma ORM locates and loads your schema file(s). Can be a file o | -------- | -------- | -------- | ---------------------------------------------- | | `schema` | `string` | No | `./prisma/schema.prisma` and `./schema.prisma` | -### `migrate` - -Configures how Prisma Migrate communicates with your underlying database. See sub-options below for details. - -| Property | Type | Required | Default | -| --------- | -------- | -------- | ------- | -| `migrate` | `object` | No | `{}` | - ### `adapter` A function that returns a Prisma driver adapter instance which is used by the Prisma CLI to run migrations. The function should return a `Promise` that resolves to a valid Prisma driver adapter. From c3ef973d8ecd0bd8466e0d6082d9156b356a2d27 Mon Sep 17 00:00:00 2001 From: MansurAliKoroglu <43291306+MansurAliKoroglu@users.noreply.github.com> Date: Tue, 9 Sep 2025 19:25:58 +0300 Subject: [PATCH 2/2] Fix default --output value for prisma init --- content/200-orm/500-reference/200-prisma-cli-reference.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/200-orm/500-reference/200-prisma-cli-reference.mdx b/content/200-orm/500-reference/200-prisma-cli-reference.mdx index d85901e951..8dd4fff307 100644 --- a/content/200-orm/500-reference/200-prisma-cli-reference.mdx +++ b/content/200-orm/500-reference/200-prisma-cli-reference.mdx @@ -135,7 +135,7 @@ By default, the project sets up a [local Prisma Postgres](/postgres/database/loc | `--url` | No | Define a custom `datasource` url. | | | `--generator-provider` | No | Define the generator provider to use. | `prisma-client-js` | | `--preview-feature` | No | Define the [Preview features](/orm/reference/preview-features) to use. To define multiple Preview features, you have to provide the flag multiple times for each Preview feature. See examples. | | -| `--output` | No | Specifies the [output location for the generated client](/orm/prisma-client/setup-and-configuration/generating-prisma-client#using-a-custom-output-path). | `node_modules/.prisma/client` | +| `--output` | No | Specifies the [output location for the generated client](/orm/prisma-client/setup-and-configuration/generating-prisma-client#using-a-custom-output-path). | `../generated/prisma` | | `--with-model` | No | Adds a simple `User` model to the initial Prisma schema. Available since version `5.14.0`. | | #### Examples