From 2cea2d9cc18890dba52b2badd03772d97795bf1d Mon Sep 17 00:00:00 2001 From: Ross Date: Thu, 21 Apr 2022 17:44:01 +0100 Subject: [PATCH] . --- atlas/models.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/atlas/models.py b/atlas/models.py index 3b632d59..f34ad77e 100644 --- a/atlas/models.py +++ b/atlas/models.py @@ -591,6 +591,8 @@ class Series(models.Model): class CaseCollection(models.Model): + app_name = "atlas" + name = models.CharField(max_length=255, unique=True) cases = models.ManyToManyField(Case, through="CaseDetail")