Skip to content

Commit 147d3f1

Browse files
authored
docs(): update db pull docs (#7370)
1 parent 3629592 commit 147d3f1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

content/200-orm/100-prisma-schema/50-introspection.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,11 @@ You can learn more about how Prisma ORM maps types from the database to the type
3838

3939
## The `prisma db pull` command
4040

41-
You can introspect your database using the `prisma db pull` command of the [Prisma CLI](/orm/tools/prisma-cli#installation). Note that using this command requires your [connection URL](/orm/reference/connection-urls) to be set in your Prisma schema [`datasource`](/orm/prisma-schema/overview/data-sources).
41+
You can introspect your database using the `prisma db pull` command of the [Prisma CLI](/orm/tools/prisma-cli#installation). Note that using this command requires your [connection URL](/orm/reference/connection-urls) to be set in your Prisma config [`datasource`](/orm/reference/prisma-config-reference#datasourceurl).
4242

4343
Here's a high-level overview of the steps that `prisma db pull` performs internally:
4444

45-
1. Read the [connection URL](/orm/reference/connection-urls) from the `datasource` configuration in the Prisma schema
45+
1. Read the [connection URL](/orm/reference/connection-urls) from the `datasource` configuration in the Prisma config
4646
1. Open a connection to the database
4747
1. Introspect database schema (i.e. read tables, columns and other structures ...)
4848
1. Transform database schema into Prisma schema data model

0 commit comments

Comments
 (0)