We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8006858 commit 0303c9eCopy full SHA for 0303c9e
simple_history/tests/models.py
@@ -482,15 +482,18 @@ class InheritTracking3(BaseInheritTracking3):
482
class InheritTracking4(TrackedAbstractBaseA):
483
pass
484
485
+
486
class BasePlace(models.Model):
487
name = models.CharField(max_length=50)
488
history = HistoricalRecords(
489
inherit=True,
- )
490
+ )
491
492
493
class InheritedRestaurant(BasePlace):
494
serves_hot_dogs = models.BooleanField(default=False)
495
496
497
class BucketMember(models.Model):
498
name = models.CharField(max_length=30)
499
user = models.OneToOneField(
0 commit comments