diff options
Diffstat (limited to 'src/account/models.py')
-rw-r--r-- | src/account/models.py | 3 |
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) |