From cae8f608ac12e36fd222a96b23bc3f1324290b7a Mon Sep 17 00:00:00 2001 From: Your Name Date: Mon, 11 Oct 2021 23:24:16 -0400 Subject: [PATCH] allow mark max 5000 char --- common/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/models.py b/common/models.py index d3180bae..3a8631ac 100644 --- a/common/models.py +++ b/common/models.py @@ -238,7 +238,7 @@ class MarkStatusEnum(models.TextChoices): class Mark(UserOwnedEntity): status = models.CharField(choices=MarkStatusEnum.choices, max_length=20) rating = models.PositiveSmallIntegerField(blank=True, null=True) - text = models.CharField(max_length=500, blank=True, default='') + text = models.CharField(max_length=5000, blank=True, default='') def __str__(self): return f"({self.id}) {self.owner} {self.status.upper()}"