25 lines
709 B
Python
25 lines
709 B
Python
# Generated by Django 5.0.2 on 2024-08-19 09:17
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('manage_subscriptions', '0011_subscription_product_id'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='subscription',
|
|
name='interval',
|
|
field=models.CharField(choices=[('month', 'month'), ('day', 'day'), ('week', 'week'), ('year', 'year')], default='month', max_length=10),
|
|
preserve_default=False,
|
|
),
|
|
migrations.AddField(
|
|
model_name='subscription',
|
|
name='interval_count',
|
|
field=models.IntegerField(default=1),
|
|
),
|
|
]
|