hoyangtsai / hello-prisma

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Hello Prisma

Init project

npx prisma init

Syntax support and auto-format

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

Migrate database

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

About


Languages

Language:Shell 54.8%Language:TypeScript 45.2%