diff --git a/apps/note/models/notes.py b/apps/note/models/notes.py index 3d929bc82eb10e5739f6fed0fba7182879b7ef1f..62811735a0bd7c46df48df4fa90758895ec84cf8 100644 --- a/apps/note/models/notes.py +++ b/apps/note/models/notes.py @@ -27,6 +27,12 @@ class Note(PolymorphicModel): help_text=_('in centimes, money credited for this instance'), default=0, ) + last_negative= models.DateTimeField( + verbose_name=_('last negative date'), + help_text=_('last time the balance was negative'), + null=True, + blank=True, + ) is_active = models.BooleanField( _('active'), default=True,