I have found the same question but not real answer (just let's see with DATABASE_ROUTERS .... ) : see here
So I explain : - I have 2 models A and B (class A .... Class B in model.py) - I have 2 database (db1 which is a SQL database and db2, a NoSQL database) - I have JUST 1 app - Model A must be only on db1 and model B must be only on db2
I would like to do "makemigrations -- db=db1" then "migrate -- db=db1" and to see that the migration is prepared only for the database db1 and that only the model A is created, same thing for db2 and B
is it possible with django ??