chore(purchase/models.py): remove obsolete PurchasableProduct.stripe_payment_url field

This commit is contained in:
2026-05-20 19:12:11 +02:00
parent 33d2b89b07
commit e399d98f31

View File

@@ -166,11 +166,6 @@ class PurchasableProduct(Orderable, models.Model):
) )
stripe_product_id = models.CharField(max_length=255, blank=True, null=True) stripe_product_id = models.CharField(max_length=255, blank=True, null=True)
stripe_price_id = models.CharField(max_length=255, blank=True, null=True) stripe_price_id = models.CharField(max_length=255, blank=True, null=True)
stripe_payment_url = models.URLField(
blank=True,
null=True,
help_text="Stripe Checkout URL for this product",
)
created_at = models.DateTimeField(auto_now_add=True) created_at = models.DateTimeField(auto_now_add=True)
course = ParentalKey( course = ParentalKey(