diff --git a/zubhub_backend/zubhub/creators/models.py b/zubhub_backend/zubhub/creators/models.py index 6eb2a24ea..11af8020f 100644 --- a/zubhub_backend/zubhub/creators/models.py +++ b/zubhub_backend/zubhub/creators/models.py @@ -39,7 +39,7 @@ class Creator(AbstractUser): id = models.UUIDField( primary_key=True, default=uuid.uuid4, editable=False, unique=True) avatar = models.URLField(max_length=1000, blank=True, null=True) - phone = models.CharField(unique=True, max_length=17, blank=True, null=True) + phone = models.CharField(max_length=17, blank=True, null=True) dateOfBirth = models.DateField(blank=True, null=True) location = models.ForeignKey( Location, null=True, on_delete=models.SET_NULL)