aboutsummaryrefslogtreecommitdiffstats
path: root/ctrack/caf/migrations/0007_auto_20200814_1230.py
diff options
context:
space:
mode:
authorMatthew Lemon <matt@matthewlemon.com>2020-08-14 14:02:54 +0100
committerMatthew Lemon <matt@matthewlemon.com>2020-08-14 14:03:59 +0100
commitae4023fee02cd69fa724f03fd12dc0a7dee2e42b (patch)
tree217544dc8314465e48ac88f8cd8b7fbacd180909 /ctrack/caf/migrations/0007_auto_20200814_1230.py
parent0a55f8e5b0cfc0e5a9a1babac7a03a38c49379ea (diff)
updated field names on NIS system add page
Diffstat (limited to 'ctrack/caf/migrations/0007_auto_20200814_1230.py')
-rw-r--r--ctrack/caf/migrations/0007_auto_20200814_1230.py23
1 files changed, 23 insertions, 0 deletions
diff --git a/ctrack/caf/migrations/0007_auto_20200814_1230.py b/ctrack/caf/migrations/0007_auto_20200814_1230.py
new file mode 100644
index 0000000..68a12bd
--- /dev/null
+++ b/ctrack/caf/migrations/0007_auto_20200814_1230.py
@@ -0,0 +1,23 @@
+# Generated by Django 2.2.12 on 2020-08-14 12:30
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('caf', '0006_auto_20200813_1125'),
+ ]
+
+ operations = [
+ migrations.AddField(
+ model_name='applicablesystem',
+ name='oes_categorisation',
+ field=models.CharField(default='', help_text="Categorisation based on OES' own internal prioritisation process.", max_length=255, verbose_name='OES Categorisation'),
+ ),
+ migrations.AlterField(
+ model_name='applicablesystem',
+ name='dft_categorisation',
+ field=models.CharField(choices=[('CR', 'Critical'), ('IM', 'Important (Legacy use only)')], default='CR', help_text='Refer to documentation for description of these criteria', max_length=2, verbose_name='DfT Categorisation'),
+ ),
+ ]