Skip to content

Commit a891cb0

Browse files
committed
fix: broken links
1 parent 0f1c477 commit a891cb0

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

content/200-orm/500-reference/100-prisma-schema-reference.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ A `datasource` block accepts the following fields:
2020
| `provider` | **Yes** | String (`postgresql`, `mysql`, `sqlite`, `sqlserver`, `mongodb`, `cockroachdb`) | Describes which data source connectors to use. |
2121
| `url` | **Yes** | String (URL) | **Deprecated in Prisma ORM v7.** Configure the connection URL in Prisma Config instead: see [`datasource.url`](/orm/reference/prisma-config-reference#datasourceurl). Existing schemas continue to work, but you should migrate to Prisma Config. |
2222
| `shadowDatabaseUrl` | No | String (URL) | **Deprecated in Prisma ORM v7.** Configure the shadow database URL in Prisma Config instead: see [`datasource.shadowDatabaseUrl`](/orm/reference/prisma-config-reference#datasourceshadowdatabaseurl). |
23-
| `directUrl` | No | String (URL) | **Deprecated in Prisma ORM v7.** Configure the direct connection URL in Prisma Config instead: see [`datasource.directUrl`](/orm/reference/prisma-config-reference#datasourcedirecturl). |
23+
| `directUrl` | No | String (URL) | **Deprecated in Prisma ORM v7.** Configure the direct connection URL in Prisma Config instead: see [`datasource.directUrl`](/orm/reference/prisma-config-reference#datasourcedirecturl-removed). |
2424
| `relationMode` | No | String (`foreignKeys`, `prisma`) | Sets whether [referential integrity](/orm/prisma-schema/data-model/relations/relation-mode) is enforced by foreign keys in the database or emulated in the Prisma Client.<br /><br />In preview in versions 3.1.1 and later. The field is named `relationMode` in versions 4.5.0 and later, and was previously named `referentialIntegrity`. |
2525
| `extensions` | No | List of strings (PostgreSQL extension names) | Allows you to [represent PostgreSQL extensions in your schema](/orm/prisma-schema/postgresql-extensions). Available in preview for PostgreSQL only in Prisma ORM versions 4.5.0 and later. |
2626

content/200-orm/500-reference/325-prisma-config-reference.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,7 @@ For Prisma ORM v6.19 and earlier, the `shadowDatabaseUrl` field remains in the `
348348
| `datasource.shadowDatabaseUrl` | `string` | No | `''` |
349349

350350

351-
### `datasource.directUrl`
351+
### `datasource.directUrl` (Removed)
352352

353353
:::warning[Removed in Prisma ORM v7]
354354

@@ -372,7 +372,7 @@ The `directUrl` property is supported by Prisma Studio from version 5.1.0 upward
372372
</details>
373373

374374

375-
### `adapter`
375+
### `adapter` (Removed)
376376

377377
:::warning[Removed in Prisma ORM v7]
378378

@@ -420,7 +420,7 @@ As of [Prisma ORM v6.11.0](https://github.com/prisma/prisma/releases/tag/6.11.0)
420420

421421
</details>
422422

423-
### `engine`
423+
### `engine` (Removed)
424424

425425
:::warning[Removed in Prisma ORM v7]
426426

@@ -454,7 +454,7 @@ export default defineConfig({
454454
</details>
455455

456456

457-
### `studio`
457+
### `studio` (Removed)
458458

459459
:::warning[Removed in Prisma ORM v7]
460460

@@ -477,7 +477,7 @@ Configures how Prisma Studio connects to your database. See sub-options below fo
477477
| -------- | -------- | -------- | ------- |
478478
| `studio` | `object` | No | none |
479479

480-
#### `studio.adapter`
480+
#### `studio.adapter` (Removed)
481481

482482
A function that returns a Prisma driver adapter instance. The function receives an `env` parameter containing environment variables and should return a `Promise` that resolves to a valid Prisma driver adapter.
483483

0 commit comments

Comments
 (0)