From b708c8b14df17e9204891b335eb50a0785656b24 Mon Sep 17 00:00:00 2001 From: gtauanearu <38145562+gtauanearu@users.noreply.github.com> Date: Sat, 13 Aug 2022 06:07:54 -0700 Subject: [PATCH] Update models.py --- src/community_db/models.py | 2 ++ 1 file changed, 2 insertions(+) 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) +