I am not sure if I should use migrate deploy or pu...
# prisma-migrate
d
I am not sure if I should use migrate deploy or push
RUN npx --no-install prisma migrate deploy --preview-feature
for my Docker command 😅
j
So both are safe to use (nothing unexpected should happen) though I recommend you to check this to understand more about
db push
vs
migrate deploy
https://www.prisma.io/docs/reference/api-reference/command-reference#db TLDR: If you are using migrations files, use
migrate deploy
for sure 😃
1