docker run --name database -e POSTGRES_PASSWORD=docker -p 5432:5432 -d postgres
npx prisma migration dev
npx prisma studio
npx prisma init
After defining your data model, you need to update your schema in the Prisma client by running
npx prisma generate
npx prisma studio
Create migrations from your Prisma schema, apply them to the database, generate artifacts (e.g. Prisma Client)
npx prisma migrate dev --name {name_migration_here}
npx prisma migrate reset
npx prisma db seed
npx prisma db pull
npx prisma db push
npx prisma validate
npx prisma format