From 654ed9bbfe48ecdf9b8237c73bd811374b1b350b Mon Sep 17 00:00:00 2001 From: Sawyer Bergeron Date: Wed, 10 Jan 2018 11:44:23 -0500 Subject: Add Nullable Lab Field to Resources Jira: PHAROS-347 Resources are now possible to associate with lab instances upon creation Change-Id: Id8abbcc448a6d840d55e4bf5130dbec22c8bc58f --- .../migrations/0003_resource_resource_lab.py | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 dashboard/src/dashboard/migrations/0003_resource_resource_lab.py (limited to 'dashboard/src/dashboard/migrations/0003_resource_resource_lab.py') diff --git a/dashboard/src/dashboard/migrations/0003_resource_resource_lab.py b/dashboard/src/dashboard/migrations/0003_resource_resource_lab.py new file mode 100644 index 0000000..fff93fd --- /dev/null +++ b/dashboard/src/dashboard/migrations/0003_resource_resource_lab.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.10 on 2018-01-10 16:36 +from __future__ import unicode_literals + +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + + dependencies = [ + ('account', '0002_auto_20180110_1636'), + ('dashboard', '0002_auto_20170505_0815'), + ] + + operations = [ + migrations.AddField( + model_name='resource', + name='resource_lab', + field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, related_name='lab_resource_set', to='account.Lab'), + ), + ] -- cgit 1.2.3-korg