From 159b0d60de83163b6f2f22865fb49e73ad284221 Mon Sep 17 00:00:00 2001 From: Ross Date: Fri, 1 Apr 2022 23:15:34 +0100 Subject: [PATCH] . --- .../0035_casecollection_show_history.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 atlas/migrations/0035_casecollection_show_history.py diff --git a/atlas/migrations/0035_casecollection_show_history.py b/atlas/migrations/0035_casecollection_show_history.py new file mode 100644 index 00000000..748fd120 --- /dev/null +++ b/atlas/migrations/0035_casecollection_show_history.py @@ -0,0 +1,18 @@ +# Generated by Django 3.2.10 on 2022-04-01 22:15 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('atlas', '0034_auto_20220401_2235'), + ] + + operations = [ + migrations.AddField( + model_name='casecollection', + name='show_history', + field=models.BooleanField(default=False, help_text='Show the history of the cases'), + ), + ]