aboutsummaryrefslogtreecommitdiffstats
path: root/ctrack/caf/migrations/0004_auto_20200813_0953.py
blob: ad1ca965fae4241239224e0b65d4c858f42e60eb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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),
        ),
    ]