19 lines
491 B
Python
19 lines
491 B
Python
# Generated by Django 4.1.4 on 2023-07-03 12:47
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('generic', '0004_examination_modality'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='ciduserexam',
|
|
name='completed',
|
|
field=models.BooleanField(default=False, help_text='If a exam has be completed. This will usually lock the exam to further reponses.'),
|
|
),
|
|
]
|