npx prisma init
Prisma extension https://marketplace.visualstudio.com/items?itemName=Prisma.prisma
After the installation, you can add the config below to User/setting.json
, it will be auto-formatted after hitting saved
{
"[prisma]": {
"editor.defaultFormatter": "Prisma.prisma",
"editor.formatOnSave": true
},
}
auto-format command
npx prisma format
Every time editing the schema.prisma, you need to execute npx prisma migrate dev [--name test]
to migrate the models into the database
Prisma Doc https://www.prisma.io/docs/getting-started
Tutorial from https://youtu.be/RebA5J-rlwg