Rob
09/20/2022, 5:13 PMpublic.users
does not exist in the current database". I have the prisma schema files that are ready to update, but what command do I actually use to update the db schema? I know I need to use prisma CLI I thinkMuhannad
09/20/2022, 6:19 PMpackage.json :
prisma:push: npx prisma db push
with db push
sudo docker exec -it <docker_service_name> npm run prisma:push
you can use prisma migration if you do want to loss data
you can add this too :
https://www.prisma.io/docs/concepts/components/prisma-migrate/shadow-databaseNurul
09/21/2022, 6:30 AM