diff options
author | Matthew Lemon <lemon@matthewlemon.com> | 2020-04-03 15:19:08 +0100 |
---|---|---|
committer | Matthew Lemon <lemon@matthewlemon.com> | 2020-04-03 15:19:08 +0100 |
commit | 3591b1b87793a2734718390691bdde41af1f8bd0 (patch) | |
tree | 87b98b1fc755f8aabd83484deca73e09c54b84bd /ctrack/caf/migrations/0003_auto_20200221_2104.py | |
parent | c184c99575e03c8b0248b10c65ca234e11695e8d (diff) |
big migration reset
Diffstat (limited to '')
-rw-r--r-- | ctrack/caf/migrations/0003_auto_20200221_2104.py | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/ctrack/caf/migrations/0003_auto_20200221_2104.py b/ctrack/caf/migrations/0003_auto_20200221_2104.py deleted file mode 100644 index 9f5d6ae..0000000 --- a/ctrack/caf/migrations/0003_auto_20200221_2104.py +++ /dev/null @@ -1,33 +0,0 @@ -# Generated by Django 2.2.9 on 2020-02-21 21:04 - -import ctrack.caf.models -from django.db import migrations, models -import django.db.models.deletion - - -class Migration(migrations.Migration): - - dependencies = [ - ('organisations', '0004_auto_20200220_1634'), - ('caf', '0002_auto_20200220_1434'), - ] - - operations = [ - migrations.RemoveField( - model_name='caf', - name='essential_system', - ), - migrations.CreateModel( - name='EssentialService', - fields=[ - ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), - ('name', models.CharField(max_length=256)), - ('description', models.TextField(max_length=1000)), - ('caf', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='caf.CAF')), - ('organisation', models.ForeignKey(on_delete=models.SET(ctrack.caf.models.ApplicableSystem.get_sentinel_org), to='organisations.Organisation')), - ], - options={ - 'verbose_name': 'ApplicableSystem', - }, - ), - ] |