From 2532d16c5255966251501dd85b238c5b87a4c2a6 Mon Sep 17 00:00:00 2001 From: Ross Date: Thu, 3 Dec 2020 09:30:30 +0000 Subject: [PATCH] fix migrations --- anatomy/migrations/0007_auto_20201201_2358.py | 23 +++++++++++++++++++ .../0008_anatomyquestion_open_access.py | 18 +++++++++++++++ 2 files changed, 41 insertions(+) create mode 100644 anatomy/migrations/0007_auto_20201201_2358.py create mode 100644 anatomy/migrations/0008_anatomyquestion_open_access.py 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'), + ), + ]