On 12/14/06, Austin Govella <[EMAIL PROTECTED]> wrote: > > How do I make the self-referential Many to Many relationship optional?
Um... m2m relationships are optional by definition. A ManyToMany field sets up an intermediate table, but adds nothing to the model table itself. You are not required to put anything in the intermediate table, so the m2m relationships are optional (of a fashion). In your case, you have a Person table with an m2m relation on self; if you add a whole lot of Person instances, there will be no relations defined; no single person is required to have a relation. If you want to add relations, you can, but they are completely optional. Or have I missed what you are trying to acheive? 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 -~----------~----~----~----~------~----~------~--~---