feat: add max_length to jitsi_meeting_password field in AppointmentRequest model

This commit is contained in:
saani 2025-12-04 12:10:27 +00:00
parent 1480049f3c
commit 596188144b

View File

@ -227,7 +227,7 @@ class AppointmentRequest(models.Model):
jitsi_meeting_created = models.BooleanField(default=False)
jitsi_moderator_token = models.TextField(blank=True, null=True)
jitsi_participant_token = models.TextField(blank=True, null=True)
jitsi_meeting_password = models.CharField( blank=True, null=True)
jitsi_meeting_password = models.CharField( blank=True, null=True, max_length=255)
jitsi_meeting_config = models.JSONField(
default=dict,