This commit is contained in:
Ross
2021-03-19 11:20:47 +00:00
parent 7f12766585
commit 40cfe714e8
6 changed files with 77 additions and 1 deletions
+18
View File
@@ -0,0 +1,18 @@
# Generated by Django 3.1.3 on 2021-03-19 11:20
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('longs', '0031_auto_20210309_1527'),
]
operations = [
migrations.AddField(
model_name='exam',
name='exam_mode',
field=models.BooleanField(default=True, help_text='If an exam should be take in exam_mode'),
),
]
+1 -1
View File
@@ -120,7 +120,7 @@ class Long(models.Model):
help_text="If the json cache needs updating", default=False
)
json_creation_time = models.DateTimeField(blank=True, default=None)
json_creation_time = models.DateTimeField(blank=True, default=None, null=True)
#question_file = models.FileField(upload_to=question_file_directory_path, blank=True, null=True)