To save a model to my 'not_default_db' I'm using :
p = Person(name='James')
p.save(using='not_default_db')
But using Model.create() save the model in the default DB:
Person.objects.create(name='James')
Is it possible to use Model.create() on a specifc Data Base ?