From e399d98f319dc5441a4d36fdb2f58e049f1ab8b7 Mon Sep 17 00:00:00 2001 From: Artur Borecki Date: Wed, 20 May 2026 19:12:11 +0200 Subject: [PATCH] chore(purchase/models.py): remove obsolete `PurchasableProduct.stripe_payment_url` field --- purchase/models.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/purchase/models.py b/purchase/models.py index 6192869..d11d8df 100644 --- a/purchase/models.py +++ b/purchase/models.py @@ -166,11 +166,6 @@ class PurchasableProduct(Orderable, models.Model): ) 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_payment_url = models.URLField( - blank=True, - null=True, - help_text="Stripe Checkout URL for this product", - ) created_at = models.DateTimeField(auto_now_add=True) course = ParentalKey(