19 lines
457 B
Python
19 lines
457 B
Python
# Generated by Django 5.1.4 on 2025-04-28 08:42
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('shorts', '0006_alter_useranswer_score'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='exam',
|
|
name='double_mark',
|
|
field=models.BooleanField(default=False, help_text='Defines if an exam is expected to be double marked'),
|
|
),
|
|
]
|