From a251d9d9aed8840c5283320b751e036e65c06312 Mon Sep 17 00:00:00 2001 From: Horilla Date: Tue, 2 Jul 2024 14:36:39 +0530 Subject: [PATCH] [ADD] HORILLA_AUDIT: New field added to the model HistoryTrackingFields --- horilla_audit/models.py | 1 + 1 file changed, 1 insertion(+) diff --git a/horilla_audit/models.py b/horilla_audit/models.py index d5fb6fbc9..6f26abfb7 100644 --- a/horilla_audit/models.py +++ b/horilla_audit/models.py @@ -121,6 +121,7 @@ def post_create_horilla_audit_log(sender, instance, *_args, **kwargs): class HistoryTrackingFields(HorillaModel): tracking_fields = models.JSONField(null=True, blank=True, editable=False) + work_info_track = models.BooleanField(default=True) class AccountBlockUnblock(HorillaModel):