From f39a14cfece25ae172166314ffd8f6a5502904a4 Mon Sep 17 00:00:00 2001 From: Tommy Marshall Date: Sun, 24 Jul 2022 22:53:53 -0400 Subject: [PATCH] Corrects schema.prisma file path --- docs/docs/local-postgres-setup.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/local-postgres-setup.md b/docs/docs/local-postgres-setup.md index 60cb1b06dd51..26c4409eb52b 100644 --- a/docs/docs/local-postgres-setup.md +++ b/docs/docs/local-postgres-setup.md @@ -84,7 +84,7 @@ If you'd rather not follow any of the advice here and create another Postgres us Tell Prisma to use a Postgres database instead of SQLite by updating the `provider` attribute in your `schema.prisma` file: -```graphql title="prisma/schema.prisma" +```graphql title="api/db/schema.prisma" datasource db { provider = "postgresql" url = env("DATABASE_URL")