diff options
Diffstat (limited to 'pyblackbird_cc/payments/models.py')
-rw-r--r-- | pyblackbird_cc/payments/models.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyblackbird_cc/payments/models.py b/pyblackbird_cc/payments/models.py index 2b66c14..cbf462c 100644 --- a/pyblackbird_cc/payments/models.py +++ b/pyblackbird_cc/payments/models.py @@ -48,11 +48,11 @@ class SubscriptionPlan(models.Model): price = models.DecimalField(max_digits=6, decimal_places=2) description = models.TextField() allowed_downloads = models.PositiveIntegerField() - stripe_plan_id = models.CharField(max_length=255) class Subscription(models.Model): user = models.OneToOneField(settings.AUTH_USER_MODEL, on_delete=models.CASCADE) + plan = models.ForeignKey(SubscriptionPlan, on_delete=models.CASCADE) is_active = models.BooleanField(default=False) start_date = models.DateTimeField(null=True, blank=True) end_date = models.DateTimeField(null=True, blank=True) |