Skip to content

Commit

Permalink
Mark Customer.shipping as not required
Browse files Browse the repository at this point in the history
  • Loading branch information
jamezpolley authored and jleclanche committed Jul 4, 2018
1 parent b7ebe18 commit 9bb64e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion djstripe/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -797,7 +797,7 @@ class Customer(StripeObject):
)
# </discount>
email = StripeTextField(null=True)
shipping = StripeJSONField(null=True, help_text="Shipping information associated with the customer.")
shipping = StripeJSONField(stripe_required=False, help_text="Shipping information associated with the customer.")

# dj-stripe fields
subscriber = ForeignKey(
Expand Down

0 comments on commit 9bb64e5

Please sign in to comment.