Skip to content

Commit

Permalink
made stripe_customer_id and stripe_plan_id fields blankable/nullable
Browse files Browse the repository at this point in the history
  • Loading branch information
skoczen committed Sep 18, 2011
1 parent 67fb07f commit 43aa6e8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions zebra/models.py
Expand Up @@ -5,7 +5,7 @@


class StripeCustomer(models.Model, mixins.StripeMixin, mixins.StripeCustomerMixin):
stripe_customer_id = models.CharField(max_length=50)
stripe_customer_id = models.CharField(max_length=50, blank=True, null=True)

class Meta:
abstract = True
Expand All @@ -15,7 +15,7 @@ def __unicode__(self):


class StripePlan(models.Model, mixins.StripeMixin, mixins.StripePlanMixin):
stripe_plan_id = models.CharField(max_length=50)
stripe_plan_id = models.CharField(max_length=50, blank=True, null=True)

class Meta:
abstract = True
Expand Down

0 comments on commit 43aa6e8

Please sign in to comment.