Just HAVE to separate data - requirement. On Sep 21, 2012 1:59 PM, "Mayukh Mukherjee" <[email protected]> wrote:
> As I understand it: (And im fairly new to django too) > > A model corresponds to a single table (not multiple). > The question to you is what is different between User1 and User2 that you > need different tables? > > > > On Fri, Sep 21, 2012 at 1:35 PM, Rohit Banga <[email protected]>wrote: > >> 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 [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-users?hl=en. >> > > > > -- > Mayukh Mukherjee > http://www.linkedin.com/in/mayukhmmukherjee > > > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > 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-users?hl=en. > -- You received this message because you are subscribed to the Google Groups "Django users" group. 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-users?hl=en.

