Bernardo P.
unread,Jul 4, 2012, 7:24:12 AM7/4/12Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to django-d...@googlegroups.com
Hello,
I have the following scenario. I have multiple tenants on different databases, all sharing the same code base. Everytime there is a change on the models, I call south's migrate on each of the databases via a single command migrate_all_databases (which calls south's migrate and django's syncdb on every database). There is however a shared database, where all tenants have access to. I'd like this shared database to have different models than the models on the tenants, which would involve having two different settings for INSTALLED_APPS. I've tried simply changing this setting before calling the syncdb command on the code, but django complains it can't find the app I removed. Any suggestions?
Many thanks in advance!