diff options
Diffstat (limited to 'ctrack/caf/migrations/0004_auto_20200813_0953.py')
-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), + ), + ] |