Looking at previous discussions, I think what I need is much simpler  
than others.

I just have

class Friendship(models.Model):
     to_user = models.ForeignKey(User, related_name="friends")
     from_user = models.ForeignKey(User, related_name="_unused_")

and want to make sure that when Friendship(A, B) is created,  
Friendship(B, A) is done so automatically. And similarly if Friendship 
(A, B) is deleted, delete the corresponding reversal. I'm just  
wondering the recommended way to do that.

James


On 23/08/2007, at 2:43 AM, Russell Keith-Magee wrote:

>
> On 8/23/07, James Tauber <[EMAIL PROTECTED]> wrote:
>>
>> So bottom line is I *can* do it, but I have to do the work myself?
>
> Pretty much. But, if you do the work yourself, it's an idea that has
> been informally blessed, so a good implementation of this feature
> could find itself in the trunk without too much effort.
>
> Yours,
> Russ Magee %-)
>
> >


--~--~---------~--~----~------------~-------~--~----~
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