From 82636c546b3e6b965f7c19bb3c0418b6cf63cad4 Mon Sep 17 00:00:00 2001 From: Ross Date: Thu, 21 Apr 2022 17:44:55 +0100 Subject: [PATCH] . --- atlas/models.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/atlas/models.py b/atlas/models.py index f34ad77e..84785f5b 100644 --- a/atlas/models.py +++ b/atlas/models.py @@ -650,6 +650,9 @@ class CaseCollection(models.Model): CidUser, blank=True, related_name="casecollection_exams" ) + group = models.ForeignKey("CidUserGroup", on_delete=models.SET_NULL, null=True, blank=True) + + archive = models.BooleanField(default=False) exam_mode = models.BooleanField(default=False)