Hi

I am a django #n00b. I came across the django model documentation and found 
it pretty interesting. (
https://docs.djangoproject.com/en/dev/topics/db/models/).

Now my usecase requires I have a set of Models and each model has multiple 
tables corresponding to it.
For example when user1 registers I can create a table user1_t1, user1_t2, 
user1_t3.
When user2 registers I can create a table user2_t1, user2_t2, user2_t3.

I really like the Model abstraction but can't find a way to create these 
multiple tables conveniently without creating new models. I could not find 
clear solutions to this on the internet.
I just want clear separation between t1, t2, t3 for the all users. 
Depending on the logged in user, I want to use the relevant table. What is 
the cleanest way to achieve this with Django?

If it is not possible to do this with tables I can think about different 
databases one for each user with the same set of tables. Is it possible to 
do the same with multiple databases?

Thanks
Rohit Banga

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/django-users/-/tl8qKhJb-_cJ.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

Reply via email to