I'm using multiple databases in a Django app. The default database is the one Django creates for user authentication, etc. Then I have a vo database, with existing data, which I plan to use for the content generation.
I wanted the classes in models.py to link up to the existing tables in vo. However, when I do
manage.py syncdb --database=vo
a set of new empty tables are created. BTW, it's a SQLite3 database.
How does one link existing tables in a database to the classes on models.py in Django?
Many thanks.