mirror of
https://github.com/django/django.git
synced 2025-04-04 13:36:42 +00:00
[2.1.x] Fixed #29653 -- Fixed missing related_query_name reverse accessor if GenericRelation is declared on an abstract base model.
Regression in 4ab027b94409e6415b774797bf9d3593da9d9ea8. Thanks Lauri Kainulainen for the report. Backport of b5c7cb4d3306a7b4e8f87bcf365ff30ae53018ed from master
This commit is contained in:
parent
d7615674d9
commit
f72a7d8f44
@ -279,7 +279,8 @@ class ModelBase(type):
|
||||
)
|
||||
else:
|
||||
field = copy.deepcopy(field)
|
||||
field.mti_inherited = True
|
||||
if not base._meta.abstract:
|
||||
field.mti_inherited = True
|
||||
new_class.add_to_class(field.name, field)
|
||||
|
||||
# Copy indexes so that index names are unique when models extend an
|
||||
|
@ -28,3 +28,7 @@ Bugfixes
|
||||
* Fixed a regression where the admin change form crashed if the user doesn't
|
||||
have the 'add' permission to a model that uses ``TabularInline``
|
||||
(:ticket:`29637`).
|
||||
|
||||
* Fixed a regression where a ``related_query_name`` reverse accessor wasn't set
|
||||
up when a ``GenericRelation`` is declared on an abstract base model
|
||||
(:ticket:`29653`).
|
||||
|
@ -158,7 +158,7 @@ class SpecialGenericRelation(GenericRelation):
|
||||
|
||||
|
||||
class HasLinks(models.Model):
|
||||
links = SpecialGenericRelation(Link)
|
||||
links = SpecialGenericRelation(Link, related_query_name='targets')
|
||||
|
||||
class Meta:
|
||||
abstract = True
|
||||
|
@ -273,3 +273,12 @@ class GenericRelationTests(TestCase):
|
||||
link = Link.objects.create(content_object=place)
|
||||
result = Link.objects.filter(places=place)
|
||||
self.assertCountEqual(result, [link])
|
||||
|
||||
def test_generic_reverse_relation_with_abc(self):
|
||||
"""
|
||||
The reverse generic relation accessor (targets) is created if the
|
||||
GenericRelation comes from an abstract base model (HasLinks).
|
||||
"""
|
||||
thing = HasLinkThing.objects.create()
|
||||
link = Link.objects.create(content_object=thing)
|
||||
self.assertCountEqual(link.targets.all(), [thing])
|
||||
|
Loading…
x
Reference in New Issue
Block a user