numerous supervisor upgrades
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
# 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'),
|
||||
),
|
||||
]
|
||||
@@ -0,0 +1,22 @@
|
||||
# Generated by Django 5.0.2 on 2024-10-28 13:57
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('generic', '0019_examuserstatus_share_with_supervisor'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.RemoveField(
|
||||
model_name='examuserstatus',
|
||||
name='share_with_supervisor',
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='ciduserexam',
|
||||
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'),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user