diff options
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 |
commit | 921174babfd04f1da248a4eb4536d882963b4700 (patch) | |
tree | bfbc5fa7a296011944c6c43865432e56584eb05a /archaeological_context_records/models.py | |
parent | d26ac1d32ae29093590a5d58167ebcab82c8fcd8 (diff) | |
download | Ishtar-921174babfd04f1da248a4eb4536d882963b4700.tar.bz2 Ishtar-921174babfd04f1da248a4eb4536d882963b4700.zip |
Operation - Context records: Surface int -> float
Diffstat (limited to 'archaeological_context_records/models.py')
-rw-r--r-- | archaeological_context_records/models.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/archaeological_context_records/models.py b/archaeological_context_records/models.py index 02d488c85..26353eed1 100644 --- a/archaeological_context_records/models.py +++ b/archaeological_context_records/models.py @@ -639,7 +639,7 @@ class ContextRecord( depth_of_appearance = models.FloatField( _("Depth of appearance (m)"), blank=True, null=True ) - surface = models.IntegerField(_("Surface (m2)"), blank=True, null=True) + surface = models.FloatField(_("Surface (m2)"), blank=True, null=True) location = models.TextField( _("Location"), blank=True, |