aboutsummaryrefslogtreecommitdiffstats
path: root/src/account/models.py
diff options
context:
space:
mode:
authorJack Morgan <jack.morgan@intel.com>2018-01-09 18:47:24 +0000
committerGerrit Code Review <gerrit@opnfv.org>2018-01-09 18:47:24 +0000
commitc81da17a046f1ad81f05de8a242b14ec02cf7c9a (patch)
tree674dd2efb21acac71d6d206eabbe5212d69af307 /src/account/models.py
parentad4a2ec7ef6c2f8e39a53100772870c2f1e82518 (diff)
parent3511f7bfcd2ed71eeeefd1e970b8cb4060eb38aa (diff)
Merge "Create Lab Model"
Diffstat (limited to 'src/account/models.py')
-rw-r--r--src/account/models.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/account/models.py b/src/account/models.py
index 47b012b..1e493b9 100644
--- a/src/account/models.py
+++ b/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