File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -94,11 +94,11 @@ bunx prisma init
94
94
95
95
` bunx ` is a bun command equivalent to ` npx ` , which allows us to execute package bin.
96
96
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.
98
98
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.
100
100
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:
102
102
``` ts
103
103
generator client {
104
104
provider = " prisma-client-js"
You can’t perform that action at this time.
0 commit comments