I know I'm making trouble for myself, but I "accid...
# orm-help
r
I know I'm making trouble for myself, but I "accidentally" deleted my prisma dev postgres database… and when I try to re-deploy (locally through docker) it throws an error: https://cloudup.com/cLmN-tYlZLK (I can deploy against something like "dev2" but feels a bit weird that it won't deploy anymore)
h
Hi, can you try
prisma reset -f
before deploying
r
The reset was successful on the command line, but running the deploy errored in the same way.
Copy code
org.postgresql.util.PSQLException: ERROR: relation "backend$dev._PermissionRoleToRole" does not exist
I'm using the
--env-file
arg for both the
prisma reset -f
and the
prisma deploy
h
Ok you can try prisma delete --force
r
worked 👍 cheers for persisting!
🙂 1