feat: add max_length to jitsi_meeting_password field in AppointmentRequest model
This commit is contained in:
parent
1480049f3c
commit
596188144b
@ -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,
|
||||
|
||||
Loading…
Reference in New Issue
Block a user