Django

Code

Ticket #2653 (closed: fixed)

Opened 2 years ago

Last modified 2 years ago

multiple manytomanyfield on self causes complaint in manage.py

Reported by: shaleh@speakeasy.net Assigned to: russellm
Milestone: Component: Core framework
Version: SVN Keywords:
Cc: Triage Stage: Unreviewed
Has patch: 0 Needs documentation: 0
Needs tests: 0 Patch needs improvement: 0

Description

Consider:

class Foo(models.Model):
     related = models.ManyToManyField('self')
     suggestions = models.ManyToManyField('self')

Both relations should be symmetrical. If A suggests B, B suggests A (for this code base anyways).

What I expected to happen is adding B to A would add A to B. Instead I get:

app.foo: Accessor for m2m field 'menu_suggestions' clashes with related m2m field 'Foo.foo_set'. Add a related_name argument to the definition for 'suggestions'. app.foo: Accessor for m2m field 'related' clashes with related m2m field 'Foo.foo_set'. Add a related_name argument to the definition for 'related'.

Doesn't matter whether I set symmetrical to false or true.

The confusion stems from model-api.txt which states:

``symmetrical`` Only used in the definition of ManyToManyFields on self.
                 Consider the following model:
                        class Person(models.Model):
                             friends = models.ManyToManyField("self")
  	
              When Django processes this model, it identifies that it has
              a ``ManyToManyField`` on itself, and as a result, it
              doesn't add a ``person_set`` attribute to the ``Person``
              class. Instead, the ``ManyToManyField`` is assumed to be
              symmetrical -- that is, if I am your friend, then you are
              my friend.
	
              If you do not want symmetry in ``ManyToMany`` relationships
              with ``self``, set ``symmetrical`` to ``False``. This will
              force Django to add the descriptor for the reverse
              relationship, allowing ``ManyToMany`` relationships to be
              non-symmetrical.

Attachments

Change History

09/05/06 09:05:08 changed by russellm

  • owner changed from adrian to russellm.

09/05/06 09:05:17 changed by russellm

  • status changed from new to assigned.

09/07/06 08:29:56 changed by russellm

  • status changed from assigned to closed.
  • resolution set to fixed.

(In [3734]) Fixes #2653 -- Modified related field utility methods to return None as the related name for symmetrical m2m fields on self. Updated validators and unit tests to account for the new behavior.

09/08/06 01:56:43 changed by shaleh@speakeasy.net

This does indeed resolve the issue. Thanks.


Add/Change #2653 (multiple manytomanyfield on self causes complaint in manage.py)




Change Properties
Action