0.12.36 pays and subscribes
This commit is contained in:
21
BillingApp/migrations/0002_alter_subscribeorder_user.py
Normal file
21
BillingApp/migrations/0002_alter_subscribeorder_user.py
Normal file
@@ -0,0 +1,21 @@
|
||||
# Generated by Django 4.2.2 on 2024-04-19 16:29
|
||||
|
||||
from django.conf import settings
|
||||
from django.db import migrations, models
|
||||
import django.db.models.deletion
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
|
||||
('BillingApp', '0001_initial'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscribeorder',
|
||||
name='user',
|
||||
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='subscribe_orders_for_user', to=settings.AUTH_USER_MODEL, verbose_name='Пользователь'),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user