Wonder about self
This commit is contained in:
parent
0c98928b18
commit
045fd0c73f
1 changed files with 7 additions and 7 deletions
|
@ -4,12 +4,12 @@ from django_countries.fields import CountryField
|
||||||
|
|
||||||
|
|
||||||
class Location(models.Model):
|
class Location(models.Model):
|
||||||
address = CharField(max_length=256)
|
address = models.CharField(max_length=256)
|
||||||
address2 = CharField(max_length=256, null=True, blank=True)
|
address2 = models.CharField(max_length=256, null=True, blank=True)
|
||||||
city = CharField(max_length=128)
|
city = models.CharField(max_length=128)
|
||||||
zipcode = CharField(max_length=16)
|
zipcode = models.CharField(max_length=16)
|
||||||
state = CharField(max_length=128)
|
state = models.CharField(max_length=128)
|
||||||
country = CountryField()
|
country = CountryField()
|
||||||
|
|
||||||
floor = CharField(max_length=16, null=True, blank=True)
|
floor = models.CharField(max_length=16, null=True, blank=True)
|
||||||
door = CharField(max_length=16, null=True, blank=True)
|
door = models.CharField(max_length=16, null=True, blank=True)
|
Loading…
Reference in a new issue