mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-07-05 18:53:28 +02:00
Fix max length
This commit is contained in:
parent
25e737821a
commit
ec371f1844
3 changed files with 7 additions and 21 deletions
|
@ -69,7 +69,11 @@ class PublicContact(TimeStampedModel):
|
|||
pc = models.CharField(null=False, help_text="Contact's postal code")
|
||||
cc = models.CharField(null=False, help_text="Contact's country code")
|
||||
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")
|
||||
voice = models.CharField(
|
||||
null=False,
|
||||
help_text="Contact's phone number. Must be in ITU.E164.2005 format",
|
||||
max_length=320,
|
||||
)
|
||||
fax = models.CharField(
|
||||
null=True,
|
||||
blank=True,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue