aboutsummaryrefslogtreecommitdiffstats
path: root/ctrack/assessments
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--ctrack/assessments/migrations/0004_auto_20200315_2003.py18
-rw-r--r--ctrack/assessments/models.py2
2 files changed, 19 insertions, 1 deletions
diff --git a/ctrack/assessments/migrations/0004_auto_20200315_2003.py b/ctrack/assessments/migrations/0004_auto_20200315_2003.py
new file mode 100644
index 0000000..9bb24f9
--- /dev/null
+++ b/ctrack/assessments/migrations/0004_auto_20200315_2003.py
@@ -0,0 +1,18 @@
+# Generated by Django 2.2.9 on 2020-03-15 20:03
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('assessments', '0003_auto_20200315_1651'),
+ ]
+
+ operations = [
+ migrations.AlterField(
+ model_name='cafcontributingoutcome',
+ name='name',
+ field=models.CharField(help_text='e.g. Board Direction', max_length=100),
+ ),
+ ]
diff --git a/ctrack/assessments/models.py b/ctrack/assessments/models.py
index b2afd68..07f3813 100644
--- a/ctrack/assessments/models.py
+++ b/ctrack/assessments/models.py
@@ -55,7 +55,7 @@ class CAFContributingOutcome(models.Model):
One of the 39 as set out in the framework.
"""
designation = models.CharField(max_length=5, help_text="e.g. A1.a, B3.c, etc")
- name = models.CharField(max_length=50, help_text="e.g. Board Direction")
+ name = models.CharField(max_length=100, help_text="e.g. Board Direction")
description = models.TextField(max_length=1000)
principle = models.ForeignKey(CAFPrinciple, on_delete=models.CASCADE)
order_id = models.IntegerField()