Adding prisma to the project
yarn add @prisma/cli -D
yarn add @prisma/client
npx prisma init
Once we have our model
npx prisma generate
npx prisma db push
Validates the models are correct
npx prisma format
Everytime we change the models run
npx prisma db push
docker-compose up
docker-compose down