summaryrefslogtreecommitdiffstats
path: root/dashboard/src/account/models.py
diff options
context:
space:
mode:
authorSawyer Bergeron <sbergeron@iol.unh.edu>2018-01-09 10:38:23 -0500
committerSawyer Bergeron <sbergeron@iol.unh.edu>2018-01-09 18:15:30 +0000
commit414f648fdc423931e9e89f8f799a75efb51c382d (patch)
tree3d00e9cefbdec5d9ed1a94aba17e166adefd5706 /dashboard/src/account/models.py
parent830e8ee9ec76f426abc59e9b88ccb7ceeedcc8e8 (diff)
Create Lab Model
Jira: PHAROS-346 Allows admin to instantiate lab instances Change-Id: I67f8ceb3bc76d4cdd09fb6f3a0b715af312f6f83 Signed-off-by: Sawyer Bergeron <sbergeron@iol.unh.edu>
Diffstat (limited to 'dashboard/src/account/models.py')
-rw-r--r--dashboard/src/account/models.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/dashboard/src/account/models.py b/dashboard/src/account/models.py
index 47b012b..1e493b9 100644
--- a/dashboard/src/account/models.py
+++ b/dashboard/src/account/models.py
@@ -34,3 +34,13 @@ class UserProfile(models.Model):
def __str__(self):
return self.user.username
+
+class Lab(models.Model):
+ id = models.AutoField(primary_key=True)
+ lab_user = models.OneToOneField(User, on_delete=models.CASCADE)
+ name = models.CharField(max_length=200, unique=True, null=False, blank=False)
+ contact_email = models.EmailField(max_length=200, null=True, blank=True)
+ contact_phone = models.CharField(max_length=20, null=True, blank=True)
+
+ def __str__(self):
+ return self.name