From a067619f1331a62bbf400df7d369fa4d4a6c7508 Mon Sep 17 00:00:00 2001 From: Sharun <715417+sharunkumar@users.noreply.github.com> Date: Fri, 27 Jun 2025 22:04:52 -0700 Subject: [PATCH] docs(prisma): update the prisma init command to use `--bun` (#15171) Co-authored-by: Meghan Denny --- docs/guides/ecosystem/prisma.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guides/ecosystem/prisma.md b/docs/guides/ecosystem/prisma.md index 88b75417ad..070827e507 100644 --- a/docs/guides/ecosystem/prisma.md +++ b/docs/guides/ecosystem/prisma.md @@ -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 ``` ---