aboutsummaryrefslogtreecommitdiffstats
path: root/src/account/models.py
diff options
context:
space:
mode:
authorSawyer Bergeron <sbergeron@iol.unh.edu>2018-01-10 11:44:23 -0500
committerSawyer Bergeron <sbergeron@iol.unh.edu>2018-01-17 21:42:33 +0000
commitdedc82d564993139f72102e3d2330f2fb64b1244 (patch)
tree38a986b6355b377f0d0cb8aa460122cab6071060 /src/account/models.py
parenta1df798486c60c911dfb2e6c2c487f7bcb7f6d01 (diff)
Add Nullable Lab Field to Resources
Jira: PHAROS-347 Resources are now possible to associate with lab instances upon creation Change-Id: Id8abbcc448a6d840d55e4bf5130dbec22c8bc58f
Diffstat (limited to 'src/account/models.py')
-rw-r--r--src/account/models.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/account/models.py b/src/account/models.py
index 1e493b9..aad4c50 100644
--- a/src/account/models.py
+++ b/src/account/models.py
@@ -36,9 +36,8 @@ class UserProfile(models.Model):
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)
+ name = models.CharField(max_length=200, primary_key=True, 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)