I am trying to implement a Django project with two databases. The seccond one would basically be a backup in case anything happens. So I just want my code to save everything to both db's and read from the default one.
I tried to use routers but it just gives one to write. So I added in every model a line to save in both DB's. MY problem now is Django auth User, which I can't override it's save function. I tried using save(using="second_db") but it throws exceptions saying theres already an user with that username.
Any ideas how this should work?