From 5a955f9796c199338eb3182f1918c4708593a1be Mon Sep 17 00:00:00 2001 From: Matthew Lemon Date: Thu, 13 Aug 2020 11:49:04 +0100 Subject: changed description field to funciton in ApplicableSystem --- ctrack/caf/migrations/0004_auto_20200813_0953.py | 31 ++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 ctrack/caf/migrations/0004_auto_20200813_0953.py (limited to 'ctrack/caf/migrations/0004_auto_20200813_0953.py') diff --git a/ctrack/caf/migrations/0004_auto_20200813_0953.py b/ctrack/caf/migrations/0004_auto_20200813_0953.py new file mode 100644 index 0000000..ad1ca96 --- /dev/null +++ b/ctrack/caf/migrations/0004_auto_20200813_0953.py @@ -0,0 +1,31 @@ +# Generated by Django 2.2.12 on 2020-08-13 09:53 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('caf', '0003_auto_20200424_1924'), + ] + + operations = [ + migrations.AlterModelOptions( + name='applicablesystem', + options={'verbose_name': 'NIS System'}, + ), + migrations.RemoveField( + model_name='applicablesystem', + name='description', + ), + migrations.AddField( + model_name='applicablesystem', + name='function', + field=models.TextField(blank=True, help_text='How the system is relevant to delivering or supporting the essential service', max_length=1000, null=True), + ), + migrations.AlterField( + model_name='applicablesystem', + name='name', + field=models.CharField(help_text='System name assigned by OES', max_length=256), + ), + ] -- cgit v1.2.3