Skip to content

Commit

Permalink
Revert "fixed issue with nulls. Also changed Email field to char fiel…
Browse files Browse the repository at this point in the history
…d for EPP"

This reverts commit f0e9c37.
  • Loading branch information
CocoByte committed Mar 5, 2024
1 parent 2733329 commit 4116356
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/registrar/models/public_contact.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,15 +60,15 @@ def save(self, *args, **kwargs):
)

name = models.CharField(null=False, help_text="Contact's full name")
org = models.CharField(null=True, blank=True, help_text="Contact's organization (null ok)")
org = models.CharField(null=True, help_text="Contact's organization (null ok)")
street1 = models.CharField(null=False, help_text="Contact's street")
street2 = models.CharField(null=True, blank=True, help_text="Contact's street (null ok)")
street3 = models.CharField(null=True, blank=True, help_text="Contact's street (null ok)")
street2 = models.CharField(null=True, help_text="Contact's street (null ok)")
street3 = models.CharField(null=True, help_text="Contact's street (null ok)")
city = models.CharField(null=False, help_text="Contact's city")
sp = models.CharField(null=False, help_text="Contact's state or province")
pc = models.CharField(null=False, help_text="Contact's postal code")
cc = models.CharField(null=False, help_text="Contact's country code")
email = models.CharField(null=False, help_text="Contact's email address")
email = models.EmailField(null=False, help_text="Contact's email address")
voice = models.CharField(null=False, help_text="Contact's phone number. Must be in ITU.E164.2005 format")
fax = models.CharField(
null=True,
Expand Down

0 comments on commit 4116356

Please sign in to comment.