I have a Django project that contains two applications App1 and App2
I have configured two databases DB1 and DB2
when I use python manage.py syncdb the tables corresponding to model of the two application are created in the first database
How can I configure Django to make the model of the first application goes to the first database and the model of the second application goes to the second database
You need to implement Automatic database routing.