summaryrefslogtreecommitdiffstats
path: root/instruments/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'instruments/models.py')
-rw-r--r--instruments/models.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/instruments/models.py b/instruments/models.py
index e266fb2..9415957 100644
--- a/instruments/models.py
+++ b/instruments/models.py
@@ -39,7 +39,7 @@ class SubInstrument(Common):
parent = models.ForeignKey(Instrument, on_delete=models.CASCADE, verbose_name="Parent Instrument")
description = models.TextField(null=True, blank=True)
rationale = models.TextField(null=True, blank=True)
- relative = models.ManyToManyField("self")
+ relative = models.ManyToManyField("self", blank=True)
short = models.CharField(max_length=10, null=True, blank=True)
def effort(self):