Add stripe_plan_name field to datacenterlight's StripePlan model
This commit is contained in:
parent
44ffd042a6
commit
4be098d07a
2 changed files with 21 additions and 0 deletions
|
|
@ -103,6 +103,7 @@ class StripePlan(models.Model):
|
|||
A model to store Data Center Light's created Stripe plans
|
||||
"""
|
||||
stripe_plan_id = models.CharField(max_length=256, null=True)
|
||||
stripe_plan_name = models.CharField(max_length=512, default="", null=True)
|
||||
|
||||
@classmethod
|
||||
def create(cls, stripe_plan_id):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue