From 1903a2ffb6e5574ae64f9dd5cb9121c15e603afc Mon Sep 17 00:00:00 2001 From: Esther Lizardo <100808713+Esther-Lita@users.noreply.github.com> Date: Mon, 18 Sep 2023 10:04:37 +0200 Subject: [PATCH] Update docs/docs/guides/tutorials/nextjs.mdx Co-authored-by: lfleischmann <67686424+lfleischmann@users.noreply.github.com> --- docs/docs/guides/tutorials/nextjs.mdx | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/docs/docs/guides/tutorials/nextjs.mdx b/docs/docs/guides/tutorials/nextjs.mdx index 51851215a..b0bec1256 100644 --- a/docs/docs/guides/tutorials/nextjs.mdx +++ b/docs/docs/guides/tutorials/nextjs.mdx @@ -49,10 +49,8 @@ $ npm install prisma --save-dev Set up Prisma with the init command of the Prisma CLI: -``` -$ npx prisma init --datasource-provider sqlite - -``` +```shell +npx prisma init --datasource-provider sqlite This creates a new `prisma` directory with your Prisma schema file and configures SQLite as your database. Once we also create the "Todo" model, the Prisma schema file should look like this: