I am trying to create a user management interface for an application written in rails, I am using django for this purpose. I already have an outdated database from the rails application that contains the content that I would manage, and I want to use django-admin to manage users in this new django application. But I do not want to change the structure of the existing database that I have. When doing syncdb, I saw that django created all the tables in the old database, which I don't want. What I did now, I defined several databases on settings.py, an outdated database is not defaulted. Thus, django created all the user-related / auth tables in the default database, which prevented the structure of the obsolete database from being changed. But I want to know if there is another better way where I could do something like: for users, auth, sessions, etc. Use database A, and for other content use database B (deprecated database).
Thanks.
Gaumire
source share