mirror of
https://github.com/django/django.git
synced 2025-11-25 05:04:26 +00:00
Refs #33984 -- Added test for creating copies of model instances with inherited m2m fields.
This commit is contained in:
parent
d5bcdf858d
commit
57c2e5da71
2 changed files with 21 additions and 0 deletions
|
|
@ -110,6 +110,10 @@ class Supplier(Place):
|
|||
customers = models.ManyToManyField(Restaurant, related_name="provider")
|
||||
|
||||
|
||||
class CustomSupplier(Supplier):
|
||||
pass
|
||||
|
||||
|
||||
class ParkingLot(Place):
|
||||
# An explicit link to the parent (we can control the attribute name).
|
||||
parent = models.OneToOneField(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue