This commit is contained in:
Ross
2022-05-03 18:49:30 +01:00
parent 4e58899e54
commit 7310e31ffc
9 changed files with 145 additions and 0 deletions
@@ -0,0 +1,18 @@
# Generated by Django 3.2.13 on 2022-05-03 17:48
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('physics', '0018_exam_include_history'),
]
operations = [
migrations.AddField(
model_name='exam',
name='authors_only',
field=models.BooleanField(default=False, help_text='If true only exam authors will be able to view.'),
),
]