From fffbad69c962bea546d8193b922b472c886c4023 Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Fri, 26 Mar 2021 15:12:31 +0100 Subject: Operation - Context records: Surface int -> float --- archaeological_operations/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'archaeological_operations/models.py') diff --git a/archaeological_operations/models.py b/archaeological_operations/models.py index 128b04496..691af56e1 100644 --- a/archaeological_operations/models.py +++ b/archaeological_operations/models.py @@ -1171,7 +1171,7 @@ class Operation( operation_type = models.ForeignKey( OperationType, related_name="+", verbose_name=_("Operation type") ) - surface = models.IntegerField(_("Surface (m2)"), blank=True, null=True) + surface = models.FloatField(_("Surface (m2)"), blank=True, null=True) remains = models.ManyToManyField( "RemainType", verbose_name=_("Remains"), blank=True ) -- cgit v1.2.3