We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Database setup: extensions and migrations up compare:
https://github.com/colouring-cities/colouring-dresden/blob/main/migrations/README.md
The text was updated successfully, but these errors were encountered:
done: login via psql
psql "host={hostname} user={username} port={port} sslmode=require dbname=postgres"
dbname 'dresdendb' already exists
check extensions:
> create extension postgis; > create extension pgcrypto; > create extension pg_trgm;
navigat to /migrations ls ./*.up.sql 2>/dev/null | while read -r migration; do psql < $migration; done;
ls ./*.up.sql 2>/dev/null | while read -r migration; do psql < $migration; done;
Sorry, something went wrong.
take care, that after inserting buildings and geometries data... the INDEX must be calculated again (first .down.sql , after .up.sql)
see #20
No branches or pull requests
Database setup: extensions and migrations up
compare:
https://github.com/colouring-cities/colouring-dresden/blob/main/migrations/README.md
The text was updated successfully, but these errors were encountered: