diff --git a/docs/setup-dev-environment.md b/docs/setup-dev-environment.md index 04ebdcb0..0838e520 100644 --- a/docs/setup-dev-environment.md +++ b/docs/setup-dev-environment.md @@ -280,7 +280,12 @@ do this are located in the `migrations` folder of your local repository. ```bash ls ~/colouring-london/migrations/*.up.sql 2>/dev/null | while read -r migration; do psql < $migration; done; ``` - + +Again, if you get errors, you may need to manually specify the database name + +```bash +ls ~/colouring-london/migrations/*.up.sql 2>/dev/null | while read -r migration; do psql -d < $migration; done; +```