[UPDT] OFFBOARDING: Increased rejection form title max length to 100

This commit is contained in:
Horilla
2024-04-18 12:28:38 +05:30
parent 4290433bec
commit f026e47617

View File

@@ -145,7 +145,7 @@ class ResignationLetter(HorillaModel):
employee_id = models.ForeignKey(
Employee, on_delete=models.CASCADE, verbose_name="Employee"
)
title = models.CharField(max_length=30, null=True)
title = models.CharField(max_length=100, null=True)
description = models.TextField(null=True, max_length=255)
planned_to_leave_on = models.DateField()
status = models.CharField(max_length=10, choices=statuses, default="requested")