I know this answer should exist somewhere in documentation or on the
net, hopefully someone can point me there. I'm looking for model help
and I think I can frame it best with an example. Say you're building a
delicious like model. You have users, user have links. Those links
have common elements such as url, title, screengrab. They also have a
context unique to a user, like the date the user added the link.

This leads to at least 3 main db tables. Users, Links, and UserLinks.
A user adds the link to http://www.djangoproject.com/ which results in
a link and userlink entry. When the next user adds a link to
http://www.djangoproject.com/, that only results in an update to
userlink.

I believe django supports this well by having a ManyToManyField in
User for Links. It will then create the intermediary join table and
manage it, which is perfect. The trick is that I want to add more data
to that intermediary table, for example the date when this particular
user added this link, etc. From a model perspective, ideally that
extra information is simply part of the link a user has.

I hope this example makes some sense and someone can offer some advice
or just point me to some relevant documentation.

thanks,
brydon
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to