aboutsummaryrefslogtreecommitdiffstats
path: root/ctrack/caf/models.py
diff options
context:
space:
mode:
authorMR Lemon <matt@matthewlemon>2020-04-24 20:33:40 +0100
committerMR Lemon <matt@matthewlemon>2020-04-24 20:33:40 +0100
commitdeaa85227e47dd70301f88caca87edb0ad3f8adf (patch)
treede6ea5623df3ba6de94c2ddadf85ae8e5fc8f449 /ctrack/caf/models.py
parent301154e0a48ea2e2966afa92912317367dfcbe1b (diff)
made create forms more consistent
Diffstat (limited to 'ctrack/caf/models.py')
-rw-r--r--ctrack/caf/models.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ctrack/caf/models.py b/ctrack/caf/models.py
index 0151d4b..1754e61 100644
--- a/ctrack/caf/models.py
+++ b/ctrack/caf/models.py
@@ -48,7 +48,7 @@ class ApplicableSystem(models.Model):
return Organisation.objects.get_or_create(name="DELETED ORGANISATION")[0]
name = models.CharField(max_length=256)
- description = models.TextField(max_length=1000)
+ description = models.TextField(max_length=1000, blank=True, null=True)
organisation = models.ForeignKey(
Organisation, on_delete=models.SET(get_sentinel_org)
)