[Django]-Django multiple databases: choose db where syncdb creates tables

3👍

Got it. Syncdb has to be run with the db parameter. Also, maybe (not sure it matters) allow_syncdb should return False, not None, in other cases.

syncdb --database='db_1'
syncdb --database='db_1'

Leave a comment