All checks were successful
Deploy Quartz site to GitHub Pages / build (push) Successful in 2m29s
35 lines
1.4 KiB
Python
35 lines
1.4 KiB
Python
# Generated by Django 6.0 on 2025-12-22 11:06
|
|
|
|
import django.db.models.deletion
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('quiz', '0006_tag_question_tags'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='QuizSession',
|
|
fields=[
|
|
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('created_at', models.DateTimeField(auto_now_add=True)),
|
|
('is_active', models.BooleanField(default=True)),
|
|
('course', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, to='quiz.course')),
|
|
('exams', models.ManyToManyField(blank=True, to='quiz.exam')),
|
|
('tags', models.ManyToManyField(blank=True, to='quiz.tag')),
|
|
('user', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='quiz_sessions', to='quiz.quizuser')),
|
|
],
|
|
options={
|
|
'ordering': ['-created_at'],
|
|
},
|
|
),
|
|
migrations.AddField(
|
|
model_name='quizresult',
|
|
name='quiz_session',
|
|
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, related_name='results', to='quiz.quizsession'),
|
|
),
|
|
]
|