summaryrefslogtreecommitdiffstats
path: root/dashboard
diff options
context:
space:
mode:
authorParker Berberian <pberberian@iol.unh.edu>2018-10-23 19:52:06 +0000
committerGerrit Code Review <gerrit@opnfv.org>2018-10-23 19:52:06 +0000
commitcdea38bc4cecd0450bbec21e6d2e51c27c47c3eb (patch)
tree99315ce12fb488795ee760e5d8abf4686e7fc2fc /dashboard
parent46d798576e00f09d25a24fbcbb2e84f1c306a9e9 (diff)
parente4e23531a60c30a2ffcfc1bdf4154e43c229cbd1 (diff)
Merge "Adds migrations"
Diffstat (limited to 'dashboard')
-rw-r--r--dashboard/src/api/migrations/0002_remove_job_delta.py17
-rw-r--r--dashboard/src/resource_inventory/migrations/0004_auto_20181017_1532.py28
2 files changed, 45 insertions, 0 deletions
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',
+ ),
+ ]
diff --git a/dashboard/src/resource_inventory/migrations/0004_auto_20181017_1532.py b/dashboard/src/resource_inventory/migrations/0004_auto_20181017_1532.py
new file mode 100644
index 0000000..3a7475c
--- /dev/null
+++ b/dashboard/src/resource_inventory/migrations/0004_auto_20181017_1532.py
@@ -0,0 +1,28 @@
+# Generated by Django 2.1 on 2018-10-17 15:32
+
+from django.db import migrations
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('resource_inventory', '0003_vlan_public'),
+ ]
+
+ operations = [
+ migrations.RemoveField(
+ model_name='genericpod',
+ name='genericresource_ptr',
+ ),
+ migrations.RemoveField(
+ model_name='genericpod',
+ name='hosts',
+ ),
+ migrations.RemoveField(
+ model_name='genericpod',
+ name='networks',
+ ),
+ migrations.DeleteModel(
+ name='GenericPod',
+ ),
+ ]