Compare commits
No commits in common. "5401ab61d2efba962ba610fdd890a1ac63a68217" and "2e72a69214e863432e76a49fb70e835360a58bd9" have entirely different histories.
5401ab61d2
...
2e72a69214
@ -187,10 +187,10 @@ class AppointmentRequest(models.Model):
|
||||
]
|
||||
|
||||
id = models.UUIDField(primary_key=True, default=uuid.uuid4, editable=False)
|
||||
first_name = EncryptedCharField(max_length=2000)
|
||||
last_name = EncryptedCharField(max_length=2000)
|
||||
email = EncryptedEmailField(max_length=2000)
|
||||
phone = EncryptedCharField(max_length=2000, blank=True)
|
||||
first_name = EncryptedCharField(max_length=255)
|
||||
last_name = EncryptedCharField(max_length=255)
|
||||
email = EncryptedEmailField(max_length=255)
|
||||
phone = EncryptedCharField(max_length=255, blank=True)
|
||||
reason = EncryptedTextField(blank=True)
|
||||
|
||||
preferred_dates = models.JSONField(
|
||||
@ -228,7 +228,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(max_length=2000, blank=True, null=True)
|
||||
jitsi_meeting_password = models.CharField(max_length=255, blank=True, null=True)
|
||||
|
||||
jitsi_meeting_config = models.JSONField(
|
||||
default=dict,
|
||||
|
||||
Loading…
Reference in New Issue
Block a user