summaryrefslogtreecommitdiffstats
path: root/dashboard/src/dashboard
diff options
context:
space:
mode:
Diffstat (limited to 'dashboard/src/dashboard')
-rw-r--r--dashboard/src/dashboard/migrations/0003_resource_resource_lab.py22
-rw-r--r--dashboard/src/dashboard/models.py2
2 files changed, 24 insertions, 0 deletions
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'),
+ ),
+ ]
diff --git a/dashboard/src/dashboard/models.py b/dashboard/src/dashboard/models.py
index 3de7db3..ff55232 100644
--- a/dashboard/src/dashboard/models.py
+++ b/dashboard/src/dashboard/models.py
@@ -15,6 +15,7 @@ from django.db import models
from django.utils import timezone
from jenkins.models import JenkinsSlave
+from account.models import Lab
class Resource(models.Model):
@@ -22,6 +23,7 @@ class Resource(models.Model):
name = models.CharField(max_length=100, unique=True)
description = models.CharField(max_length=300, blank=True, null=True)
url = models.CharField(max_length=100, blank=True, null=True)
+ resource_lab = models.ForeignKey(Lab, related_name='lab_resource_set', null=True, blank=True)
owner = models.ForeignKey(User, related_name='user_lab_owner', null=True, blank=True)
vpn_users = models.ManyToManyField(User, related_name='user_vpn_users', blank=True)
slave = models.ForeignKey(JenkinsSlave, on_delete=models.DO_NOTHING, null=True, blank=True)