19 lines
502 B
Python
19 lines
502 B
Python
# Generated by Django 5.0.2 on 2024-10-28 13:48
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('generic', '0018_alter_supervisor_user'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='examuserstatus',
|
|
name='share_with_supervisor',
|
|
field=models.BooleanField(default=False, help_text='If true the exam status and results will be available to a users supervisor'),
|
|
),
|
|
]
|