fix a number of things

This commit is contained in:
Ross
2023-08-07 13:42:22 +01:00
parent b36fa370f1
commit c3e36bfb12
16 changed files with 302 additions and 34 deletions
@@ -0,0 +1,22 @@
# Generated by Django 4.1.4 on 2023-08-07 08:14
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('atlas', '0007_selfreview'),
]
operations = [
migrations.RemoveField(
model_name='case',
name='scrapped',
),
migrations.AddField(
model_name='case',
name='archive',
field=models.BooleanField(default=False, help_text='Case has been archived, this will remain on the system but will not be shown'),
),
]