feature/meetings #42
@ -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),
|
||||
),
|
||||
]
|
||||
@ -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)
|
||||
|
||||
Loading…
Reference in New Issue
Block a user