From e4e23531a60c30a2ffcfc1bdf4154e43c229cbd1 Mon Sep 17 00:00:00 2001 From: Parker Berberian Date: Wed, 17 Oct 2018 11:33:45 -0400 Subject: Adds migrations In reviewing the LaaS 2.0 code, models were changed without the accompanying migrations. Change-Id: Ibdba456d9650c7d7d8750328852f27866a899328 Signed-off-by: Parker Berberian --- dashboard/src/api/migrations/0002_remove_job_delta.py | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 dashboard/src/api/migrations/0002_remove_job_delta.py (limited to 'dashboard/src/api') diff --git a/dashboard/src/api/migrations/0002_remove_job_delta.py b/dashboard/src/api/migrations/0002_remove_job_delta.py new file mode 100644 index 0000000..157a40f --- /dev/null +++ b/dashboard/src/api/migrations/0002_remove_job_delta.py @@ -0,0 +1,17 @@ +# Generated by Django 2.1 on 2018-10-17 15:32 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('api', '0001_initial'), + ] + + operations = [ + migrations.RemoveField( + model_name='job', + name='delta', + ), + ] -- cgit 1.2.3-korg