feature/meetings #42

Merged
Saani merged 2 commits from feature/meetings into main 2025-11-27 15:00:45 +00:00
2 changed files with 25 additions and 2 deletions
Showing only changes of commit 7d5d3217a0 - Show all commits

View File

@ -0,0 +1,23 @@
# Generated by Django 5.2.8 on 2025-11-27 14:55
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('meetings', '0001_initial'),
]
operations = [
migrations.AlterField(
model_name='appointmentrequest',
name='jitsi_meet_url',
field=models.URLField(blank=True, help_text='Jitsi Meet URL for the video session', null=True),
),
migrations.AlterField(
model_name='appointmentrequest',
name='jitsi_room_id',
field=models.CharField(blank=True, help_text='Jitsi room ID', max_length=100, null=True, unique=True),
),
]

View File

@ -203,8 +203,8 @@ class AppointmentRequest(models.Model):
)
rejection_reason = EncryptedTextField(blank=True)
jitsi_meet_url = models.URLField(blank=True, help_text="Jitsi Meet URL for the video session")
jitsi_room_id = models.CharField(max_length=100, unique=True, blank=True, help_text="Jitsi room ID")
jitsi_meet_url = models.URLField(blank=True, null=True, help_text="Jitsi Meet URL for the video session")
jitsi_room_id = models.CharField(max_length=100, unique=True, null=True, blank=True, help_text="Jitsi room ID")
created_at = models.DateTimeField(auto_now_add=True)
updated_at = models.DateTimeField(auto_now=True)