mirror of
https://github.com/django/django.git
synced 2025-08-04 10:59:45 +00:00
Refs #24090 -- Added a test for multi-table inheritance + subqueries.
Ticket #24090 was already fixed by
b68212f539
, this commit adds tests to
verify this is indeed the case.
Thanks to Beauhurst for commissioning the work on this ticket.
This commit is contained in:
parent
915ef79b08
commit
76ac07a909
2 changed files with 6 additions and 1 deletions
|
@ -700,7 +700,11 @@ class Classroom(models.Model):
|
|||
students = models.ManyToManyField(Student, related_name='classroom')
|
||||
|
||||
|
||||
class Ticket23605A(models.Model):
|
||||
class Ticket23605AParent(models.Model):
|
||||
pass
|
||||
|
||||
|
||||
class Ticket23605A(Ticket23605AParent):
|
||||
pass
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue