init commit
This commit is contained in:
19
lottery/draw/migrations/0003_alter_prize_winner.py
Normal file
19
lottery/draw/migrations/0003_alter_prize_winner.py
Normal file
@@ -0,0 +1,19 @@
|
||||
# Generated by Django 5.1.6 on 2025-03-06 10:48
|
||||
|
||||
import django.db.models.deletion
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('draw', '0002_lotteryparticipant'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='prize',
|
||||
name='winner',
|
||||
field=models.ForeignKey(blank=True, help_text='Выберите счет участника лотереи, который выиграл приз', null=True, on_delete=django.db.models.deletion.SET_NULL, to='draw.lotteryparticipant', verbose_name='Победитель (счет)'),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user