diff options
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',) |