Multi-tenant database model with new user model?

2013-04-30 Thread Subodh Nijsure
Hi, We have old model for one of my django application that requires multi-tenant deployment. The database model I came up with is kind of _ugly_ to support the multi-tenancy. Are there any good examples of how one can write multi-tenant django application using the new AbstractUser classes? -Su

Re: Multi-tenant database model with new user model?

2013-05-01 Thread Dan Gentry
Something I'm looking forward to learning as well. My app uses the older user_profile approach. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+un

Re: Multi-tenant database model with new user model?

2013-05-02 Thread Venkatraman S
I think i had stumbled on django-multitenant or django-simple-multitenant sometime back. I took some ideas from there and implemented my own version of custom multi-tenancy. On Wed, May 1, 2013 at 8:31 PM, Dan Gentry wrote: > Something I'm looking forward to learning as well. My app uses the o