Update migration to make vat_number non mandatory

This commit is contained in:
PCoder 2019-12-25 08:31:40 +05:30
commit e48ae6a39d
2 changed files with 4 additions and 4 deletions

View file

@ -13,7 +13,7 @@ class BaseBillingAddress(models.Model):
city = models.CharField(max_length=50)
postal_code = models.CharField(max_length=50)
country = CountryField()
vat_number = models.CharField(max_length=100, default="")
vat_number = models.CharField(max_length=100, default="", blank=True)
class Meta:
abstract = True