24 lines
711 B
Python
24 lines
711 B
Python
# Generated by Django 3.2.6 on 2021-08-16 12:06
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('anatomy', '0043_rename_json_creation_id_exam_exam_json_id'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='exam',
|
|
name='archive',
|
|
field=models.BooleanField(default=False, help_text='Archived exams will remain on the test system but will not be displayed by default'),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='exam',
|
|
name='active',
|
|
field=models.BooleanField(default=False, help_text='If an exam should be available to take'),
|
|
),
|
|
]
|