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
When running the migration, it fails on creating the spatial index:
sqlalchemy.exc.ProgrammingError: (psycopg2.errors.InvalidSchemaName) FEHLER: Schema »test« does not exist
[SQL: CREATE INDEX idx_user_account_geom ON test.user_account USING gist (geom)]
Hi @hochstibe
Thank you very much for this report and the included fix! And sorry for this miss 😅 #404 includes your patch and a new release should follow today.
When running the migration, it fails on creating the spatial index:
Solution: Fix in alembic_helpers.py Line 418: add the schema
alembic revision --autogenerate -m "init"
produced (thanks to 0.12.4 👍 ) a correct script including the schemas for the table and the index:The text was updated successfully, but these errors were encountered: