diff --git a/src/community_db/models.py b/src/community_db/models.py index f0853ab..ac27d4c 100644 --- a/src/community_db/models.py +++ b/src/community_db/models.py @@ -6,3 +6,5 @@ class Person(models.Model): last_name = models.CharField(max_length=100, blank=True) country = models.CharField(max_length=100, blank=True) mobile_number = models.CharField(max_length=20, blank=True) + user_email = models.EmailField(max_length=70,blank=True,unique=True) +