aboutsummaryrefslogtreecommitdiffstats
path: root/ctrack/caf/migrations/0005_auto_20200221_2115.py
diff options
context:
space:
mode:
authorMatthew Lemon <lemon@matthewlemon.com>2020-04-03 15:19:08 +0100
committerMatthew Lemon <lemon@matthewlemon.com>2020-04-03 15:19:08 +0100
commit3591b1b87793a2734718390691bdde41af1f8bd0 (patch)
tree87b98b1fc755f8aabd83484deca73e09c54b84bd /ctrack/caf/migrations/0005_auto_20200221_2115.py
parentc184c99575e03c8b0248b10c65ca234e11695e8d (diff)
big migration reset
Diffstat (limited to 'ctrack/caf/migrations/0005_auto_20200221_2115.py')
-rw-r--r--ctrack/caf/migrations/0005_auto_20200221_2115.py39
1 files changed, 0 insertions, 39 deletions
diff --git a/ctrack/caf/migrations/0005_auto_20200221_2115.py b/ctrack/caf/migrations/0005_auto_20200221_2115.py
deleted file mode 100644
index 8b94dcf..0000000
--- a/ctrack/caf/migrations/0005_auto_20200221_2115.py
+++ /dev/null
@@ -1,39 +0,0 @@
-# Generated by Django 2.2.9 on 2020-02-21 21:15
-
-from django.db import migrations, models
-import django.db.models.deletion
-
-
-class Migration(migrations.Migration):
-
- dependencies = [
- ('caf', '0004_auto_20200221_2106'),
- ]
-
- operations = [
- migrations.CreateModel(
- name='ConfidenceAssessment',
- fields=[
- ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
- ('descriptor', models.CharField(max_length=100)),
- ('description', models.TextField(max_length=250)),
- ('type', models.IntegerField(choices=[(1, 'Good'), (2, 'Bad'), (3, 'OK')], default=1)),
- ],
- ),
- migrations.AddField(
- model_name='ranking',
- name='description',
- field=models.TextField(default='NA', max_length=250),
- preserve_default=False,
- ),
- migrations.AlterField(
- model_name='ranking',
- name='type',
- field=models.IntegerField(choices=[(1, 'Triage'), (2, 'First Assessment'), (3, 'Validation')], default=1),
- ),
- migrations.AddField(
- model_name='caf',
- name='confidence_assessment',
- field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, to='caf.ConfidenceAssessment'),
- ),
- ]