Re: Request: Ability to add new databases dynamically.

2013-04-11 Thread charettes
If you're using PostgreSQL you could try creating a schema for each tenant. That's what django-tenancy does internally. You define which models are *tenant specific* by subclassing *TenantModel* and then you create instances of* Tenant* (or your the

Request: Ability to add new databases dynamically.

2013-04-11 Thread jambunathan v.r
Right now, the django documentation advises against modifying the settings dynamically as some caching is involved. There are single tenant applications which need to talk to multiple databases and the different databases that it needs to talk to might not be known when the django server is star