summaryrefslogtreecommitdiff
path: root/tests/model_inheritance_regress/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/model_inheritance_regress/models.py')
-rw-r--r--tests/model_inheritance_regress/models.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/tests/model_inheritance_regress/models.py b/tests/model_inheritance_regress/models.py
index ad905db981..b5bc75061d 100644
--- a/tests/model_inheritance_regress/models.py
+++ b/tests/model_inheritance_regress/models.py
@@ -45,12 +45,6 @@ class ParkingLot(Place):
return "%s the parking lot" % self.name
-class ParkingLot2(Place):
- # In lieu of any other connector, an existing OneToOneField will be
- # promoted to the primary key.
- parent = models.OneToOneField(Place, models.CASCADE)
-
-
class ParkingLot3(Place):
# The parent_link connector need not be the pk on the model.
primary_key = models.AutoField(primary_key=True)