diff options
author | Matthew Lemon <matt@matthewlemon.com> | 2020-08-13 11:49:04 +0100 |
---|---|---|
committer | Matthew Lemon <matt@matthewlemon.com> | 2020-08-13 11:49:04 +0100 |
commit | 5a955f9796c199338eb3182f1918c4708593a1be (patch) | |
tree | ff58dbbf9a68cb6bfef04f11386df088e558f5e9 /ctrack/caf/migrations | |
parent | bd7ffed3034f66c16845063667f3bea7cc0a9e9a (diff) |
changed description field to funciton in ApplicableSystem
Diffstat (limited to '')
-rw-r--r-- | ctrack/caf/migrations/0004_auto_20200813_0953.py | 31 |
1 files changed, 31 insertions, 0 deletions
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), + ), + ] |