mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-08-29 12:33:17 +02:00
Remove country code
This commit is contained in:
parent
c86a9d5fff
commit
13b1ca0238
4 changed files with 23 additions and 32 deletions
|
@ -128,12 +128,6 @@ class TransitionDomain(TimeStampedModel):
|
|||
help_text="Zip code",
|
||||
db_index=True,
|
||||
)
|
||||
country_code = models.CharField(
|
||||
max_length=2,
|
||||
null=True,
|
||||
blank=True,
|
||||
help_text="Country code",
|
||||
)
|
||||
|
||||
def __str__(self):
|
||||
return f"{self.username}, {self.domain_name}"
|
||||
|
@ -161,5 +155,4 @@ class TransitionDomain(TimeStampedModel):
|
|||
f"city: {self.city}, \n"
|
||||
f"state_territory: {self.state_territory}, \n"
|
||||
f"zipcode: {self.zipcode}, \n"
|
||||
f"country_code: {self.country_code}, \n"
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue