diff options
author | Matthew Lemon <lemon@matthewlemon.com> | 2020-03-15 20:48:18 +0000 |
---|---|---|
committer | Matthew Lemon <lemon@matthewlemon.com> | 2020-03-15 20:48:18 +0000 |
commit | b315e9569a1609f2144821be7459e80687fe584b (patch) | |
tree | 393d9903bc7039482120edebf00bc8edf9ba4b3d /ctrack/assessments/migrations/0004_auto_20200315_2003.py | |
parent | 88d17e3ae1fa451a3d20c753e22cbab3f5025a5d (diff) |
All Objectives, Principles and Outcomes now in pop script
Diffstat (limited to '')
-rw-r--r-- | ctrack/assessments/migrations/0004_auto_20200315_2003.py | 18 |
1 files changed, 18 insertions, 0 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), + ), + ] |