24 lines
675 B
Python
24 lines
675 B
Python
# Generated by Django 3.1.3 on 2020-12-01 23:58
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('anatomy', '0006_auto_20201129_0955'),
|
|
]
|
|
|
|
operations = [
|
|
#migrations.AddField(
|
|
#model_name='anatomyquestion',
|
|
#name='open_access',
|
|
#field=models.BooleanField(default=True, help_text='If an question should be freely available to browse'),
|
|
#),
|
|
migrations.AddField(
|
|
model_name='exam',
|
|
name='recreate_json',
|
|
field=models.BooleanField(default=False, help_text='If the json cache needs updating'),
|
|
),
|
|
]
|