19 lines
474 B
Python
19 lines
474 B
Python
# Generated by Django 3.2.8 on 2021-10-17 17:13
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('anatomy', '0045_exam_open_access'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='exam',
|
|
name='open_access',
|
|
field=models.BooleanField(default=False, help_text='If the exam is freely accessible (to view and edit on the test system)'),
|
|
),
|
|
]
|