docs(prisma): update the prisma init command to use --bun (#15171)

Co-authored-by: Meghan Denny <meghan@bun.sh>
This commit is contained in:
Sharun
2025-06-27 22:04:52 -07:00
committed by GitHub
parent c9242dae3a
commit a067619f13

View File

@@ -30,7 +30,7 @@ $ bun add @prisma/client
We'll use the Prisma CLI with `bunx` to initialize our schema and migration directory. For simplicity we'll be using an in-memory SQLite database.
```bash
$ bunx prisma init --datasource-provider sqlite
$ bunx --bun prisma init --datasource-provider sqlite
```
---