Change stripe_tax_id field to char + regenerate migrations
This commit is contained in:
parent
9310f72cf9
commit
833dc9bdcb
4 changed files with 22 additions and 52 deletions
|
|
@ -14,7 +14,7 @@ class BaseBillingAddress(models.Model):
|
|||
postal_code = models.CharField(max_length=50)
|
||||
country = CountryField()
|
||||
vat_number = models.CharField(max_length=100, default="", blank=True)
|
||||
stripe_tax_id = models.DateTimeField(blank=True, null=True)
|
||||
stripe_tax_id = models.CharField(max_length=100, default="", blank=True)
|
||||
vat_number_validated_on = models.DateTimeField(blank=True, null=True)
|
||||
|
||||
class Meta:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue