From 6d14f4938b9bf5e735cf67e911807ca81a080d4a Mon Sep 17 00:00:00 2001 From: SARVAR RAXMONOV <79727432+SarvarRaxmonov@users.noreply.github.com> Date: Sat, 24 Dec 2022 17:32:10 +0500 Subject: [PATCH] Update models.py Why this unrelated comments need --- account/models.py | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/account/models.py b/account/models.py index afd644ed..e6001dbd 100644 --- a/account/models.py +++ b/account/models.py @@ -68,21 +68,6 @@ class User(AbstractBaseUser): class UserProfile(models.Model): user = models.OneToOneField(User, on_delete=models.CASCADE) - # acm_problems_status examples: - # { - # "problems": { - # "1": { - # "status": JudgeStatus.ACCEPTED, - # "_id": "1000" - # } - # }, - # "contest_problems": { - # "1": { - # "status": JudgeStatus.ACCEPTED, - # "_id": "1000" - # } - # } - # } acm_problems_status = JSONField(default=dict) # like acm_problems_status, merely add "score" field oi_problems_status = JSONField(default=dict)