Set empty default value for vat_number
This commit is contained in:
parent
b919b6cfbd
commit
202a514b1b
1 changed files with 1 additions and 1 deletions
|
@ -13,7 +13,7 @@ class BaseBillingAddress(models.Model):
|
||||||
city = models.CharField(max_length=50)
|
city = models.CharField(max_length=50)
|
||||||
postal_code = models.CharField(max_length=50)
|
postal_code = models.CharField(max_length=50)
|
||||||
country = CountryField()
|
country = CountryField()
|
||||||
vat_number = models.CharField(max_length=100)
|
vat_number = models.CharField(max_length=100, default="")
|
||||||
|
|
||||||
class Meta:
|
class Meta:
|
||||||
abstract = True
|
abstract = True
|
||||||
|
|
Loading…
Reference in a new issue