You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Someone who has only just cloned the repo and installed the deps is unlikely to see this error because they won't have a duplicate project in the same namespace the way I do ... https://github.com/nelsonic/append-only-log-ex
I need to DROP the database and re-create it.
The text was updated successfully, but these errors were encountered:
A year later, I'm seeing the same error in a different project and I'm grateful to my past self for creating this issue with the solution. (first result on Google in incognito) 😻
In Phoenix 1.5.1 it's just:
psql -U postgres -c 'DROP DATABASE IF EXISTS app_dev;'
psql -U postgres -c 'DROP DATABASE IF EXISTS app_test;'
mix test
While attempting to run the tests on
localhost
I got the following error:Someone who has only just cloned the repo and installed the deps is unlikely to see this error because they won't have a duplicate project in the same namespace the way I do ...
https://github.com/nelsonic/append-only-log-ex
I need to
DROP
the database and re-create it.The text was updated successfully, but these errors were encountered: