'LOCAL_TARGET_DATABASE must not already exist' error

303 Views Asked by At

I'm attempting to pull a remote heroku database to my computer so that I can browse it with SQlite, but I keep recieving the following error: LOCAL_TARGET_DATABASE must not already exist. How would I go about removing the local target database it's referring to? Is this the database associated with the local version of my app? Won't removing that database cause errors when I test the app locally?

1

There are 1 best solutions below

3
On

According to the heroku library source code, I would guess the issue is that the local database should not exist.

The local database is the one referenced by your application configuration, or the one you mention when you invoke the command

pg:pull <REMOTE_SOURCE_DATABASE> <LOCAL_TARGET_DATABASE>

(that is the second argument)