From 1d07c5e8fd9cb67e446b2bdb116b69dcaaf39bb5 Mon Sep 17 00:00:00 2001 From: Ludovic Stephan Date: Sat, 15 Jul 2017 17:50:15 +0200 Subject: [PATCH] Add amount field to EquipmentRemark --- equipment/models.py | 1 + 1 file changed, 1 insertion(+) diff --git a/equipment/models.py b/equipment/models.py index 6e22edd..9fd3287 100644 --- a/equipment/models.py +++ b/equipment/models.py @@ -66,6 +66,7 @@ class EquipmentRemark(models.Model): related_name="remarks", help_text=_("Matériel concerné par la remarque"), ) + amount = models.PositiveSmallIntegerField(_("quantité concernée")) is_broken = models.BooleanField() is_lost = models.BooleanField()