summaryrefslogtreecommitdiffstats
path: root/core/models_survex.py
diff options
context:
space:
mode:
authorPhilip Sargent <philip.sargent@klebos.com>2020-07-20 23:25:49 +0100
committerPhilip Sargent <philip.sargent@klebos.com>2020-07-20 23:25:49 +0100
commit1bc82dea15bd4c07b2e9ccc6048f73c236477751 (patch)
tree10ff15604d4e1606ed3581bda7586daa0da41f60 /core/models_survex.py
parentf131509c565edef455a5a9d89f176081d56038cc (diff)
downloadtroggle-1bc82dea15bd4c07b2e9ccc6048f73c236477751.tar.gz
troggle-1bc82dea15bd4c07b2e9ccc6048f73c236477751.tar.bz2
troggle-1bc82dea15bd4c07b2e9ccc6048f73c236477751.zip
make survexblock titles 200 chars
Diffstat (limited to 'core/models_survex.py')
-rw-r--r--core/models_survex.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/models_survex.py b/core/models_survex.py
index 6751165..7d3562d 100644
--- a/core/models_survex.py
+++ b/core/models_survex.py
@@ -99,7 +99,7 @@ class SurvexBlockLookUpManager(models.Manager):
class SurvexBlock(models.Model):
objects = SurvexBlockLookUpManager()
name = models.CharField(max_length=100)
- title = models.CharField(max_length=100)
+ title = models.CharField(max_length=200)
parent = models.ForeignKey('SurvexBlock', blank=True, null=True,on_delete=models.SET_NULL)
cave = models.ForeignKey('Cave', blank=True, null=True,on_delete=models.SET_NULL)