From 4007de199385964be51f8ab55ef387636fd840a7 Mon Sep 17 00:00:00 2001 From: Ross Date: Mon, 4 Jan 2021 13:10:18 +0000 Subject: [PATCH] covert cid to bigintegerfield --- anatomy/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/anatomy/models.py b/anatomy/models.py index b9082712..af01e257 100644 --- a/anatomy/models.py +++ b/anatomy/models.py @@ -297,7 +297,7 @@ class UserAnswer(models.Model): settings.AUTH_USER_MODEL, null=True, blank=True, on_delete=models.SET_NULL ) - cid = models.IntegerField(blank=True, null=True) + cid = models.BigIntegerField(blank=True, null=True) # Each user answer is associated with a particular exam exam = models.ForeignKey(