According to Django we can keep default database as empty dictionary {} but when we run it , raises Improperly configured database settings
.
I have used automated routers in my app files and registered them on settings.py . Django cannot avoid default database .
Even when we define multiple databases with default db , Django will search for queries in default database and gives error table not found in default database. Adding auth_db for auth routers is bad idea cause I have 2 apps and 2 databases in one project file .
Thanks in Advance. #hope