summaryrefslogtreecommitdiff
path: root/archaeological_operations/models.py
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@iggdrasil.net>2021-03-26 15:12:31 +0100
committerÉtienne Loks <etienne.loks@iggdrasil.net>2021-03-26 15:12:31 +0100
commitfffbad69c962bea546d8193b922b472c886c4023 (patch)
treebfbc5fa7a296011944c6c43865432e56584eb05a /archaeological_operations/models.py
parentf6b335e4a41c185101b58731a023a717567e33fa (diff)
downloadIshtar-fffbad69c962bea546d8193b922b472c886c4023.tar.bz2
Ishtar-fffbad69c962bea546d8193b922b472c886c4023.zip
Operation - Context records: Surface int -> float
Diffstat (limited to 'archaeological_operations/models.py')
-rw-r--r--archaeological_operations/models.py2
1 files changed, 1 insertions, 1 deletions
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
)