From 41af6dcb7c4e24101018159f27226550cf9c9131 Mon Sep 17 00:00:00 2001 From: Artur Borecki Date: Wed, 20 May 2026 19:12:26 +0200 Subject: [PATCH] chore(purchase/migrations/0008): remove obsolete `PurchasableProduct.stripe_payment_url` field --- ...ove_purchasableproduct_stripe_payment_url.py | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 purchase/migrations/0008_remove_purchasableproduct_stripe_payment_url.py diff --git a/purchase/migrations/0008_remove_purchasableproduct_stripe_payment_url.py b/purchase/migrations/0008_remove_purchasableproduct_stripe_payment_url.py new file mode 100644 index 0000000..fa4d7d3 --- /dev/null +++ b/purchase/migrations/0008_remove_purchasableproduct_stripe_payment_url.py @@ -0,0 +1,17 @@ +# Generated by Django 6.0.4 on 2026-05-20 17:09 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('purchase', '0007_coursepurchase_status_and_more'), + ] + + operations = [ + migrations.RemoveField( + model_name='purchasableproduct', + name='stripe_payment_url', + ), + ]