> something like that maybe works:
>
> class MyUser(models.Model):
>     user = models.ForeignKey(User, unique=True)
>     entity = models.ForeignKey(Entity, unique=True)
>     ....
>

Sorry, this is my current proposal (but I really don't know if there
is some difference with the previous one):

class MyUser(models.Model):
    user = models.ForeignKey(User, unique=True)
    entity = models.OneToOneField(Entity, primary_key=True)
    ....


cheers,
x13

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

Reply via email to