2006-05-02 09:31:56 +08:00
|
|
|
"""
|
2007-03-24 04:17:04 +08:00
|
|
|
28. Many-to-many relationships between the same two tables
|
2006-05-02 09:31:56 +08:00
|
|
|
|
2008-08-12 22:15:38 +08:00
|
|
|
In this example, a ``Person`` can have many friends, who are also ``Person``
|
|
|
|
objects. Friendship is a symmetrical relationship - if I am your friend, you
|
|
|
|
are my friend. Here, ``friends`` is an example of a symmetrical
|
|
|
|
``ManyToManyField``.
|
2006-05-02 09:31:56 +08:00
|
|
|
|
2008-08-12 22:15:38 +08:00
|
|
|
A ``Person`` can also have many idols - but while I may idolize you, you may
|
|
|
|
not think the same of me. Here, ``idols`` is an example of a non-symmetrical
|
|
|
|
``ManyToManyField``. Only recursive ``ManyToManyField`` fields may be
|
|
|
|
non-symmetrical, and they are symmetrical by default.
|
2006-05-02 09:31:56 +08:00
|
|
|
|
2008-08-12 22:15:38 +08:00
|
|
|
This test validates that the many-to-many table is created using a mangled name
|
|
|
|
if there is a name clash, and tests that symmetry is preserved where
|
|
|
|
appropriate.
|
2006-05-02 09:31:56 +08:00
|
|
|
"""
|
|
|
|
|
|
|
|
from django.db import models
|
|
|
|
|
|
|
|
class Person(models.Model):
|
2007-08-05 13:14:46 +08:00
|
|
|
name = models.CharField(max_length=20)
|
2006-05-02 09:31:56 +08:00
|
|
|
friends = models.ManyToManyField('self')
|
|
|
|
idols = models.ManyToManyField('self', symmetrical=False, related_name='stalkers')
|
|
|
|
|
Merged Unicode branch into trunk (r4952:5608). This should be fully
backwards compatible for all practical purposes.
Fixed #2391, #2489, #2996, #3322, #3344, #3370, #3406, #3432, #3454, #3492, #3582, #3690, #3878, #3891, #3937, #4039, #4141, #4227, #4286, #4291, #4300, #4452, #4702
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5609 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-07-04 20:11:04 +08:00
|
|
|
def __unicode__(self):
|
2006-05-02 09:31:56 +08:00
|
|
|
return self.name
|
|
|
|
|
2006-08-27 21:59:47 +08:00
|
|
|
__test__ = {'API_TESTS':"""
|
2006-05-02 09:31:56 +08:00
|
|
|
>>> a = Person(name='Anne')
|
|
|
|
>>> a.save()
|
|
|
|
>>> b = Person(name='Bill')
|
|
|
|
>>> b.save()
|
|
|
|
>>> c = Person(name='Chuck')
|
|
|
|
>>> c.save()
|
|
|
|
>>> d = Person(name='David')
|
|
|
|
>>> d.save()
|
|
|
|
|
|
|
|
# Add some friends in the direction of field definition
|
|
|
|
# Anne is friends with Bill and Chuck
|
|
|
|
>>> a.friends.add(b,c)
|
|
|
|
|
|
|
|
# David is friends with Anne and Chuck - add in reverse direction
|
|
|
|
>>> d.friends.add(a,c)
|
|
|
|
|
|
|
|
# Who is friends with Anne?
|
2006-06-01 03:23:07 +08:00
|
|
|
>>> a.friends.all()
|
2006-06-04 08:23:51 +08:00
|
|
|
[<Person: Bill>, <Person: Chuck>, <Person: David>]
|
2006-05-02 09:31:56 +08:00
|
|
|
|
|
|
|
# Who is friends with Bill?
|
|
|
|
>>> b.friends.all()
|
2006-06-04 08:23:51 +08:00
|
|
|
[<Person: Anne>]
|
2006-05-02 09:31:56 +08:00
|
|
|
|
|
|
|
# Who is friends with Chuck?
|
|
|
|
>>> c.friends.all()
|
2006-06-04 08:23:51 +08:00
|
|
|
[<Person: Anne>, <Person: David>]
|
2006-05-02 09:31:56 +08:00
|
|
|
|
|
|
|
# Who is friends with David?
|
2006-06-01 03:23:07 +08:00
|
|
|
>>> d.friends.all()
|
2006-06-04 08:23:51 +08:00
|
|
|
[<Person: Anne>, <Person: Chuck>]
|
2006-05-02 09:31:56 +08:00
|
|
|
|
|
|
|
# Bill is already friends with Anne - add Anne again, but in the reverse direction
|
|
|
|
>>> b.friends.add(a)
|
|
|
|
|
|
|
|
# Who is friends with Anne?
|
2006-06-01 03:23:07 +08:00
|
|
|
>>> a.friends.all()
|
2006-06-04 08:23:51 +08:00
|
|
|
[<Person: Bill>, <Person: Chuck>, <Person: David>]
|
2006-05-02 09:31:56 +08:00
|
|
|
|
|
|
|
# Who is friends with Bill?
|
|
|
|
>>> b.friends.all()
|
2006-06-04 08:23:51 +08:00
|
|
|
[<Person: Anne>]
|
2006-05-02 09:31:56 +08:00
|
|
|
|
|
|
|
# Remove Anne from Bill's friends
|
|
|
|
>>> b.friends.remove(a)
|
|
|
|
|
|
|
|
# Who is friends with Anne?
|
2006-06-01 03:23:07 +08:00
|
|
|
>>> a.friends.all()
|
2006-06-04 08:23:51 +08:00
|
|
|
[<Person: Chuck>, <Person: David>]
|
2006-05-02 09:31:56 +08:00
|
|
|
|
|
|
|
# Who is friends with Bill?
|
|
|
|
>>> b.friends.all()
|
|
|
|
[]
|
|
|
|
|
|
|
|
# Clear Anne's group of friends
|
|
|
|
>>> a.friends.clear()
|
|
|
|
|
|
|
|
# Who is friends with Anne?
|
2006-06-01 03:23:07 +08:00
|
|
|
>>> a.friends.all()
|
2006-05-02 09:31:56 +08:00
|
|
|
[]
|
|
|
|
|
|
|
|
# Reverse relationships should also be gone
|
|
|
|
# Who is friends with Chuck?
|
|
|
|
>>> c.friends.all()
|
2006-06-04 08:23:51 +08:00
|
|
|
[<Person: David>]
|
2006-05-02 09:31:56 +08:00
|
|
|
|
|
|
|
# Who is friends with David?
|
2006-06-01 03:23:07 +08:00
|
|
|
>>> d.friends.all()
|
2006-06-04 08:23:51 +08:00
|
|
|
[<Person: Chuck>]
|
2006-05-02 09:31:56 +08:00
|
|
|
|
|
|
|
|
|
|
|
# Add some idols in the direction of field definition
|
|
|
|
# Anne idolizes Bill and Chuck
|
|
|
|
>>> a.idols.add(b,c)
|
|
|
|
|
|
|
|
# Bill idolizes Anne right back
|
|
|
|
>>> b.idols.add(a)
|
|
|
|
|
|
|
|
# David is idolized by Anne and Chuck - add in reverse direction
|
|
|
|
>>> d.stalkers.add(a,c)
|
|
|
|
|
|
|
|
# Who are Anne's idols?
|
2006-06-01 03:23:07 +08:00
|
|
|
>>> a.idols.all()
|
2006-06-04 08:23:51 +08:00
|
|
|
[<Person: Bill>, <Person: Chuck>, <Person: David>]
|
2006-05-02 09:31:56 +08:00
|
|
|
|
|
|
|
# Who is stalking Anne?
|
|
|
|
>>> a.stalkers.all()
|
2006-06-04 08:23:51 +08:00
|
|
|
[<Person: Bill>]
|
2006-05-02 09:31:56 +08:00
|
|
|
|
|
|
|
# Who are Bill's idols?
|
|
|
|
>>> b.idols.all()
|
2006-06-04 08:23:51 +08:00
|
|
|
[<Person: Anne>]
|
2006-05-02 09:31:56 +08:00
|
|
|
|
|
|
|
# Who is stalking Bill?
|
|
|
|
>>> b.stalkers.all()
|
2006-06-04 08:23:51 +08:00
|
|
|
[<Person: Anne>]
|
2006-05-02 09:31:56 +08:00
|
|
|
|
|
|
|
# Who are Chuck's idols?
|
|
|
|
>>> c.idols.all()
|
2006-06-04 08:23:51 +08:00
|
|
|
[<Person: David>]
|
2006-05-02 09:31:56 +08:00
|
|
|
|
|
|
|
# Who is stalking Chuck?
|
|
|
|
>>> c.stalkers.all()
|
2006-06-04 08:23:51 +08:00
|
|
|
[<Person: Anne>]
|
2006-05-02 09:31:56 +08:00
|
|
|
|
|
|
|
# Who are David's idols?
|
|
|
|
>>> d.idols.all()
|
|
|
|
[]
|
|
|
|
|
|
|
|
# Who is stalking David
|
|
|
|
>>> d.stalkers.all()
|
2006-06-04 08:23:51 +08:00
|
|
|
[<Person: Anne>, <Person: Chuck>]
|
2006-05-02 09:31:56 +08:00
|
|
|
|
|
|
|
# Bill is already being stalked by Anne - add Anne again, but in the reverse direction
|
|
|
|
>>> b.stalkers.add(a)
|
|
|
|
|
|
|
|
# Who are Anne's idols?
|
2006-06-01 03:23:07 +08:00
|
|
|
>>> a.idols.all()
|
2006-06-04 08:23:51 +08:00
|
|
|
[<Person: Bill>, <Person: Chuck>, <Person: David>]
|
2006-05-02 09:31:56 +08:00
|
|
|
|
|
|
|
# Who is stalking Anne?
|
2006-06-04 08:23:51 +08:00
|
|
|
[<Person: Bill>]
|
2006-05-02 09:31:56 +08:00
|
|
|
|
|
|
|
# Who are Bill's idols
|
|
|
|
>>> b.idols.all()
|
2006-06-04 08:23:51 +08:00
|
|
|
[<Person: Anne>]
|
2006-05-02 09:31:56 +08:00
|
|
|
|
|
|
|
# Who is stalking Bill?
|
|
|
|
>>> b.stalkers.all()
|
2006-06-04 08:23:51 +08:00
|
|
|
[<Person: Anne>]
|
2006-05-02 09:31:56 +08:00
|
|
|
|
|
|
|
# Remove Anne from Bill's list of stalkers
|
|
|
|
>>> b.stalkers.remove(a)
|
|
|
|
|
|
|
|
# Who are Anne's idols?
|
2006-06-01 03:23:07 +08:00
|
|
|
>>> a.idols.all()
|
2006-06-04 08:23:51 +08:00
|
|
|
[<Person: Chuck>, <Person: David>]
|
2006-05-02 09:31:56 +08:00
|
|
|
|
|
|
|
# Who is stalking Anne?
|
|
|
|
>>> a.stalkers.all()
|
2006-06-04 08:23:51 +08:00
|
|
|
[<Person: Bill>]
|
2006-05-02 09:31:56 +08:00
|
|
|
|
|
|
|
# Who are Bill's idols?
|
|
|
|
>>> b.idols.all()
|
2006-06-04 08:23:51 +08:00
|
|
|
[<Person: Anne>]
|
2006-05-02 09:31:56 +08:00
|
|
|
|
|
|
|
# Who is stalking Bill?
|
|
|
|
>>> b.stalkers.all()
|
|
|
|
[]
|
|
|
|
|
|
|
|
# Clear Anne's group of idols
|
|
|
|
>>> a.idols.clear()
|
|
|
|
|
|
|
|
# Who are Anne's idols
|
2006-06-01 03:23:07 +08:00
|
|
|
>>> a.idols.all()
|
2006-05-02 09:31:56 +08:00
|
|
|
[]
|
|
|
|
|
|
|
|
# Reverse relationships should also be gone
|
|
|
|
# Who is stalking Chuck?
|
|
|
|
>>> c.stalkers.all()
|
|
|
|
[]
|
|
|
|
|
|
|
|
# Who is friends with David?
|
2006-06-01 03:23:07 +08:00
|
|
|
>>> d.stalkers.all()
|
2006-06-04 08:23:51 +08:00
|
|
|
[<Person: Chuck>]
|
2006-05-02 09:31:56 +08:00
|
|
|
|
2006-08-27 21:59:47 +08:00
|
|
|
"""}
|