Files
penracourses/atlas/migrations/0051_casecollection_end_date_and_more.py
T
2024-05-18 08:39:45 +01:00

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),
),
]