diff options
author | Philip Sargent <philip.sargent@klebos.com> | 2020-06-16 22:16:48 +0100 |
---|---|---|
committer | Philip Sargent <philip.sargent@klebos.com> | 2020-06-16 22:16:48 +0100 |
commit | b153fafa9fae5052ca0b67f6b7a0970cc486835e (patch) | |
tree | 1ca154667f344f1f1b8b7ef571b0f3b70bc5c6b0 /core | |
parent | adc43324f3ba4640ec869ddbfbada3d30ebb2792 (diff) | |
download | troggle-b153fafa9fae5052ca0b67f6b7a0970cc486835e.tar.gz troggle-b153fafa9fae5052ca0b67f6b7a0970cc486835e.tar.bz2 troggle-b153fafa9fae5052ca0b67f6b7a0970cc486835e.zip |
django 1.8.19
Diffstat (limited to 'core')
-rw-r--r-- | core/models_survex.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/core/models_survex.py b/core/models_survex.py index f33e7b0..4efdb59 100644 --- a/core/models_survex.py +++ b/core/models_survex.py @@ -126,10 +126,10 @@ class SurvexBlock(models.Model): survexscansfolder = models.ForeignKey("SurvexScansFolder", null=True) #refscandir = models.CharField(max_length=100) - legsall = models.IntegerField(null=True) # summary data for this block - legssplay = models.IntegerField(null=True) # summary data for this block - legssurfc = models.IntegerField(null=True) # summary data for this block - totalleglength = models.FloatField(null=True) + legsall = models.IntegerField() # summary data for this block + legssplay = models.IntegerField() # summary data for this block + legssurfc = models.IntegerField() # summary data for this block + totalleglength = models.FloatField() class Meta: ordering = ('id',) |