25 lines
758 B
Python
25 lines
758 B
Python
# Generated by Django 3.1.3 on 2021-02-06 09:05
|
|
|
|
from django.db import migrations, models
|
|
import django.db.models.deletion
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('anatomy', '0027_anatomyquestion_examination'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='anatomyquestion',
|
|
name='open_access',
|
|
field=models.BooleanField(default=True, help_text='If a question should be freely available to browse'),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='anatomyquestion',
|
|
name='question_type',
|
|
field=models.ForeignKey(default=1, null=True, on_delete=django.db.models.deletion.SET_NULL, to='anatomy.questiontype'),
|
|
),
|
|
]
|