19 lines
455 B
Python
19 lines
455 B
Python
# Generated by Django 3.2.13 on 2022-05-03 17:48
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('anatomy', '0059_exam_include_history'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='exam',
|
|
name='authors_only',
|
|
field=models.BooleanField(default=False, help_text='If true only exam authors will be able to view.'),
|
|
),
|
|
]
|