how do you all handle prisma migrations in CI/CD w...
# orm-help
m
how do you all handle prisma migrations in CI/CD with multiple environments? should I have my CI/CD run a prisma command in staging/prod branches to run the migrations that were created in dev? or should I be doing migrations manually?
c
For deploying to Heroku I created the following Procfile:
Copy code
release: npx prisma migrate deploy
web: npm start
👍 1