Introduced credit card holder's name in BaseBillingAddress model

This commit is contained in:
PCoder 2017-07-16 03:40:30 +05:30
parent 30058efa41
commit 9d4cbb2be5
1 changed files with 1 additions and 0 deletions

View File

@ -8,6 +8,7 @@ from .fields import CountryField
# Create your models here.
class BaseBillingAddress(models.Model):
cardholder_name = models.CharField(max_length=100)
street_address = models.CharField(max_length=100)
city = models.CharField(max_length=50)
postal_code = models.CharField(max_length=50)