From ce204bed7f59e34a9ec226e1699db257ec33da30 Mon Sep 17 00:00:00 2001 From: Akash Kumar Sen Date: Thu, 29 Jun 2023 11:47:42 +0200 Subject: Refs #30382 -- Added more tests for using force_insert with model inheritance. --- tests/force_insert_update/models.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'tests/force_insert_update/models.py') diff --git a/tests/force_insert_update/models.py b/tests/force_insert_update/models.py index a98eadb4f9..586be12f13 100644 --- a/tests/force_insert_update/models.py +++ b/tests/force_insert_update/models.py @@ -23,6 +23,10 @@ class SubCounter(Counter): pass +class SubSubCounter(SubCounter): + pass + + class WithCustomPK(models.Model): name = models.IntegerField(primary_key=True) value = models.IntegerField() -- cgit v1.3