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()}"