On Sun, Jan 18, 2009 at 1:20 PM, Erik Bernoth <[email protected]> wrote: > > Hi guys, > I'm trying to create a db model in Django. And until now I created n:m- > Relations with own tables, because in many cases I need extra > information like the creation date of that connection-entity. And now > I found in the docs that it is possible to connect these individual > n:m tables of myself with the foreign-key tables. But all together it > does not look like I can do more with that .through attribute as I > could without. >
Take a look at ticket #6095 to know the motivation and rationale behind the addition of the through option and some of the advantages when compared with using you own model with FKs to the two related models. Also and the documentation you pointed to modeltests/m2m_through tests show the usage of the new API that allows you to do the same things you were able to do but in a clearer way. Regards, -- Ramiro Morales --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---

