From 39bd66d1203331e38d1fd0e9d5020cfc6d34c11a Mon Sep 17 00:00:00 2001 From: georgemillard Date: Tue, 20 Aug 2019 16:01:15 +0100 Subject: [PATCH] Added tracker field to the Child model definition --- docs/utilities.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/utilities.rst b/docs/utilities.rst index 6fcd6b4..926e8ac 100644 --- a/docs/utilities.rst +++ b/docs/utilities.rst @@ -228,6 +228,7 @@ It should be noted that a generic FieldTracker tracks Foreign Keys by db_column class Child(models.Model): name = models.CharField(max_length=64) parent = models.ForeignKey(Parent) + tracker = FieldTracker() .. code-block:: pycon