Add initial straightforward field renames

This commit is contained in:
Erin 2024-04-10 15:38:08 -07:00
parent 25dfe81f10
commit ed517aa258
No known key found for this signature in database
GPG key ID: 1CAD275313C62460
9 changed files with 27 additions and 12 deletions

View file

@ -550,12 +550,14 @@ class DomainRequest(TimeStampedModel):
choices=StateTerritoryChoices.choices,
null=True,
blank=True,
verbose_name="State / territory",
help_text="State, territory, or military post",
)
zipcode = models.CharField(
max_length=10,
null=True,
blank=True,
verbose_name="Zip code",
help_text="Zip code",
db_index=True,
)