20 lines
534 B
Python
20 lines
534 B
Python
# Generated by Django 5.1.7 on 2025-04-05 18:27
|
|
|
|
import django.db.models.deletion
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('play', '0006_quizgame_current_question_index_and_more'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='quizgameparticipant',
|
|
name='quiz_game',
|
|
field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='participants', to='play.quizgame'),
|
|
),
|
|
]
|