29 lines
957 B
Python
29 lines
957 B
Python
# Generated by Django 5.0.2 on 2024-05-13 10:41
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('atlas', '0050_rename_questions_casedetail_question_schema'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='casecollection',
|
|
name='end_date',
|
|
field=models.DateTimeField(help_text='Date (and time) the exam/collection ends', null=True),
|
|
),
|
|
migrations.AddField(
|
|
model_name='casecollection',
|
|
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='casecollection',
|
|
name='start_date',
|
|
field=models.DateTimeField(help_text='Date (and time) the exam/collection starts', null=True),
|
|
),
|
|
]
|