Skip to content

Commit d44a2cf

Browse files
authored
Merge pull request #36 from Fecony/patch-2
2 parents f190ff8 + 3bca0aa commit d44a2cf

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/blog/with-prisma.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -94,11 +94,11 @@ bunx prisma init
9494

9595
`bunx` is a bun command equivalent to `npx`, which allows us to execute package bin.
9696

97-
Once setup, we can see that Prisma will update `.env` file and generate a folder named **prisma** with **prisma.schema** as a file inside.
97+
Once setup, we can see that Prisma will update `.env` file and generate a folder named **prisma** with **schema.prisma** as a file inside.
9898

99-
**prisma.schema** is an database model defined with Prisma's schema language.
99+
**schema.prisma** is an database model defined with Prisma's schema language.
100100

101-
Let's update our **prisma.schema** file like this for a demonstration:
101+
Let's update our **schema.prisma** file like this for a demonstration:
102102
```ts
103103
generator client {
104104
provider = "prisma-client-js"

0 commit comments

Comments
 (0)