1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
# Generated by Django 5.0.4 on 2024-09-03 19:32
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("payments", "0001_initial"),
]
operations = [
migrations.CreateModel(
name="SubscriptionPlan",
fields=[
(
"id",
models.BigAutoField(
auto_created=True,
primary_key=True,
serialize=False,
verbose_name="ID",
),
),
("name", models.CharField(max_length=255)),
("price", models.DecimalField(decimal_places=2, max_digits=6)),
("description", models.TextField()),
("allowed_downloads", models.PositiveIntegerField()),
("stripe_plan_id", models.CharField(max_length=255)),
],
),
migrations.RemoveField(
model_name="subscription",
name="stripe_subscription_id",
),
]
|