[UPDT] BASE: Updated model field max_length attribute

This commit is contained in:
Horilla
2025-09-19 14:34:43 +05:30
parent a6c6a09271
commit 9f2704eb63
4 changed files with 4 additions and 4 deletions

View File

@@ -1638,7 +1638,7 @@ class Reimbursement(HorillaModel):
related_name="approved_by",
editable=False,
)
description = models.TextField(null=True, max_length=255)
description = models.TextField(null=True)
allowance_id = models.ForeignKey(
Allowance, on_delete=models.SET_NULL, null=True, editable=False
)