More on this:

If I change Accusation to:

class Accusation(models.Model):
    game = models.ForeignKey(Game)
    player = models.ForeignKey(Player, related_name='related_player')
    accusedPlayer = models.ForeignKey(Player,
related_name='related_accusedPlayer')
    isCommitted = models.BooleanField()
    motive = models.CharField(maxlength = 1024)
    method = models.CharField(maxlength = 1024)

then it validates and installs (and the session tables, etc get
installed too)

My question is ... why is Accusation any different tan Message,
ReadMessage or any of the other tables that relate back to Player?

Cheers,
Sandy


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