Hi,
Its been now approx. 6 months I am working with Django and
I must say all issues that came my way were solved either by this or
that post, blog, tutorial. Support of Django is marvelous.
This time I am stuck with a design issue rather Django.
* I have a Users Master table and they have their profiles and stuff.
Thing I am trying to implement is "User can follow many other users
(something similar to people following on Twitter)".
I can think of two approaches:
1. Add a new table with two fields( following user, followed user).
2. Add a field in User master table of type String and length say
200.
Storing the user IDs of followed users separated by space.
Which will be a better approach with scaling up in mind?
I am using Django with MySql.
Thanks In Advance
Guri
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---