start adding exam dates
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
# Generated by Django 5.0.2 on 2024-05-13 10:41
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('sbas', '0009_alter_exam_authors_only'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='exam',
|
||||
name='end_date',
|
||||
field=models.DateTimeField(help_text='Date (and time) the exam/collection ends', null=True),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='exam',
|
||||
name='restrict_to_dates',
|
||||
field=models.BooleanField(default=False, help_text='If the exam/collection should only be taken between the start and end date times'),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='exam',
|
||||
name='start_date',
|
||||
field=models.DateTimeField(help_text='Date (and time) the exam/collection starts', null=True),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user