You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

22 lines
678 B

# Generated by Django 3.2.4 on 2025-10-14 00:51
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('course', '0008_auto_20251013_1724'),
]
operations = [
migrations.AddField(
model_name='courselivesession',
name='room_id',
field=models.CharField(blank=True, help_text='Identifier of the PlugNMeet room.', max_length=255, null=True, unique=True, verbose_name='Room ID'),
),
migrations.AddIndex(
model_name='courselivesession',
index=models.Index(fields=['room_id'], name='course_cour_room_id_ed0222_idx'),
),
]