19 lines
512 B
Python
19 lines
512 B
Python
# Generated by Django 5.0.2 on 2024-11-18 09:59
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('atlas', '0063_casecollection_results_supervisor_visible'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='casecollection',
|
|
name='exam_open_access',
|
|
field=models.BooleanField(default=False, help_text='Set to true if you want any registered user to be able to take the exam.'),
|
|
),
|
|
]
|