19 lines
497 B
Python
19 lines
497 B
Python
# Generated by Django 5.0.2 on 2024-10-28 11:14
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('sbas', '0016_exam_exam_open_access'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='exam',
|
|
name='results_supervisor_visible',
|
|
field=models.BooleanField(default=False, help_text='If true the results will be visible to supervisors without candidate approval.'),
|
|
),
|
|
]
|