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! -- You received this message because you are subscribed to the Google Groups "Django developers" group. To view this discussion on the web visit https://groups.google.com/d/msg/django-developers/-/W2n4vJfhGowJ. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/django-developers?hl=en.
