Writing CRUD REST API with NestJS and Prisma
Briefly

First, install some dependencies for Prisma via the terminal.$ npm install prisma @prisma/client$ npx prisma init

Second, change the DATABASE_URL environment variable at .env from planetscale.Third, update the db provider from postgresql to mysql at prisma/schema.prisma and create a tasks model (table tasks).
Read at Medium
[
add
]
[
|
|
]