aboutsummaryrefslogtreecommitdiffstats
path: root/ctrack/caf/migrations/0007_auto_20200221_2122.py
diff options
context:
space:
mode:
authorMatthew Lemon <lemon@matthewlemon.com>2020-02-21 21:31:40 +0000
committerMatthew Lemon <lemon@matthewlemon.com>2020-02-21 21:31:40 +0000
commit190cd74177f06a91460c7e64aeab2f6abede4343 (patch)
treed22e878b5b1a5faa0b588ffa7aa8365a3590f994 /ctrack/caf/migrations/0007_auto_20200221_2122.py
parent7aa032ac51539521668a11eb835b4acea9eb6cf8 (diff)
introduced essential services everybody
Diffstat (limited to '')
-rw-r--r--ctrack/caf/migrations/0007_auto_20200221_2122.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/ctrack/caf/migrations/0007_auto_20200221_2122.py b/ctrack/caf/migrations/0007_auto_20200221_2122.py
new file mode 100644
index 0000000..a89db00
--- /dev/null
+++ b/ctrack/caf/migrations/0007_auto_20200221_2122.py
@@ -0,0 +1,18 @@
+# Generated by Django 2.2.9 on 2020-02-21 21:22
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('caf', '0006_auto_20200221_2120'),
+ ]
+
+ operations = [
+ migrations.AlterField(
+ model_name='confidenceassessment',
+ name='descriptor',
+ field=models.CharField(choices=[('GOOD', 'Good'), ('BAD', 'Bad'), ('OK', 'OK')], default=1, max_length=10),
+ ),
+ ]