aboutsummaryrefslogtreecommitdiffstats
path: root/ctrack/caf/migrations/0011_auto_20200225_0830.py
diff options
context:
space:
mode:
authorMatthew Lemon <matt@matthewlemon.com>2020-02-25 08:35:03 +0000
committerMatthew Lemon <matt@matthewlemon.com>2020-02-25 08:35:03 +0000
commit70a8f6e37a462f2508ed024b2ee34f0df6b16a3b (patch)
treeb197a39384b8469e25e14308fe567e48b62303b4 /ctrack/caf/migrations/0011_auto_20200225_0830.py
parent9269f3c3798b677b4e46abcc5df5f869c9cb9164 (diff)
fixed issue where gradings didnt appear on caf admin page
Diffstat (limited to 'ctrack/caf/migrations/0011_auto_20200225_0830.py')
-rw-r--r--ctrack/caf/migrations/0011_auto_20200225_0830.py23
1 files changed, 23 insertions, 0 deletions
diff --git a/ctrack/caf/migrations/0011_auto_20200225_0830.py b/ctrack/caf/migrations/0011_auto_20200225_0830.py
new file mode 100644
index 0000000..826b267
--- /dev/null
+++ b/ctrack/caf/migrations/0011_auto_20200225_0830.py
@@ -0,0 +1,23 @@
+# Generated by Django 2.2.9 on 2020-02-25 08:30
+
+from django.db import migrations, models
+import django.db.models.deletion
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('caf', '0010_auto_20200225_0747'),
+ ]
+
+ operations = [
+ migrations.RemoveField(
+ model_name='caf',
+ name='triage_grading',
+ ),
+ migrations.AddField(
+ model_name='caf',
+ name='quality_grading',
+ field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, related_name='quality_grading', to='caf.Grading'),
+ ),
+ ]