aboutsummaryrefslogtreecommitdiffstats
path: root/alphabetlearning/payments/migrations/0005_remove_subscriptionplan_stripe_plan_id.py
blob: 1e642b4eafb9857affadb73dad7ae26ea3fe8e5c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Generated by Django 5.0.4 on 2024-09-08 19:23

from django.db import migrations


class Migration(migrations.Migration):

    dependencies = [
        ("payments", "0004_rename_stripe_product_id_price_stripe_price_id"),
    ]

    operations = [
        migrations.RemoveField(
            model_name="subscriptionplan",
            name="stripe_plan_id",
        ),
    ]