fix migrations
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
# 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'),
|
||||
),
|
||||
]
|
||||
@@ -0,0 +1,18 @@
|
||||
# Generated by Django 3.1.3 on 2020-12-03 09:29
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('anatomy', '0007_auto_20201201_2358'),
|
||||
]
|
||||
|
||||
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'),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user