Remove country code

This commit is contained in:
zandercymatics 2023-11-17 10:04:09 -07:00
parent c86a9d5fff
commit 13b1ca0238
No known key found for this signature in database
GPG key ID: FF4636ABEC9682B7
4 changed files with 23 additions and 32 deletions

View file

@ -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"
)