Hello,
We have the following database set-up:
- the default database is MySQL
- two additional databases are PostGIS
The system check framework (either `manage.py check` or `manage.py runserver`) is using the default database (mysql) to validate `django.contrib.gis.db.models.Model`-based models, and the commands are blowing up with the following error:
AttributeError: 'DatabaseOperations' object has no attribute 'geo_db_type'.
We set-up database routers for the PostGIS models to use the proper connection, but the check framework seems to ignore them.
Are we doing something wrong?
Is this a known pitfall of the system check framework around multiple databases that we are unaware of?
Or is this a bug?
Thanks,
Ion