diff --git a/anatomy/migrations/0007_auto_20201201_2358.py b/anatomy/migrations/0007_auto_20201201_2358.py new file mode 100644 index 00000000..d5ff156f --- /dev/null +++ b/anatomy/migrations/0007_auto_20201201_2358.py @@ -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'), + ), + ] diff --git a/anatomy/migrations/0008_anatomyquestion_open_access.py b/anatomy/migrations/0008_anatomyquestion_open_access.py new file mode 100644 index 00000000..a2224cea --- /dev/null +++ b/anatomy/migrations/0008_anatomyquestion_open_access.py @@ -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'), + ), + ]