Change cc_brand field to 128 chars

This commit is contained in:
PCoder 2018-08-24 09:37:56 +02:00
parent 83a6e53fae
commit a45eef0409
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ class Ordereable(models.Model):
created_at = models.DateTimeField(auto_now_add=True)
approved = models.BooleanField(default=False)
last4 = models.CharField(max_length=4, blank=True)
cc_brand = models.CharField(max_length=10, blank=True)
cc_brand = models.CharField(max_length=128, blank=True)
stripe_charge_id = models.CharField(max_length=100, null=True)
class Meta: