Opened 16 years ago

Closed 16 years ago

Last modified 13 years ago

#7237 closed (worksforme)

Many-to-many relationship on self - inherited model

Reported by: zgollum Owned by: nobody
Component: Core (Other) Version: dev
Severity: Keywords: qsrf-cleanup
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description (last modified by Ramiro Morales)

I've inherited django.contrib.auth.User model

class MyUser(User):
        friends = models.ManyToManyField("self", symmetrical = False,
related_name = 'f_set')
        objects = UserManager()
        class Admin:
                pass

Other fields were removed for simplicity.

Now I run shell and:

u1 = MyUser.objects.create_user(username='test1',
email='test1@test.com', password='test')
u2 = MyUser.objects.create_user(username='test2',
email='test2@test.com', password='test')

u1.friends.add(u2)

u1.friends.all()
RESULT(!):
[<MyUser: test1>]
u1.f_set.all()
[]

u2.f_set.all()
[<MyUser: test2>]

So, I guess it's a bug. If you add a u3 and add it to the friends of
u1:

u1.friends.all()
[<MyUser: test1>, <MyUser: test1>] 

Change History (6)

comment:1 by George Vilches, 16 years ago

Keywords: qsrf-cleanup added

comment:2 by Ramiro Morales, 16 years ago

Description: modified (diff)

comment:3 by Jacob, 16 years ago

milestone: 1.0

comment:4 by Malcolm Tredinnick, 16 years ago

Resolution: worksforme
Status: newclosed

Using exactly the example given here, this works fine for me with [7786] (it may well have been fixed as a side-effect of something else between the time or reporting and now). Please reopen if you are still seeing the problem, preferably with a patch against tests/regressiontests/model_inheritance_regress/models.py that shows a failing test.

comment:5 by zgollum, 16 years ago

Works! Great, thanks. I just knew that everything was going to be alright when Mike's back :)

comment:6 by Jacob, 13 years ago

milestone: 1.0

Milestone 1.0 deleted

Note: See TracTickets for help on using tickets.
Back to Top