From 4512bbc831ddde6d65512af10bd6b5814415bb92 Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Mon, 21 Jul 2025 13:45:29 +0200 Subject: [PATCH] add migration --- .../migrations/0013_auto_20250721_1340.py | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 teleforma/webclass/migrations/0013_auto_20250721_1340.py diff --git a/teleforma/webclass/migrations/0013_auto_20250721_1340.py b/teleforma/webclass/migrations/0013_auto_20250721_1340.py new file mode 100644 index 00000000..1d8de45d --- /dev/null +++ b/teleforma/webclass/migrations/0013_auto_20250721_1340.py @@ -0,0 +1,28 @@ +# Generated by Django 3.2.25 on 2025-07-21 13:40 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('webclass', '0012_webclassrecord_status'), + ] + + operations = [ + migrations.AlterField( + model_name='webclassrecord', + name='record_id', + field=models.CharField(blank=True, max_length=255, null=True, verbose_name='ID Enregistrement BBB'), + ), + migrations.AlterField( + model_name='webclassrecord', + name='room_id', + field=models.CharField(blank=True, max_length=255, null=True, unique=True, verbose_name='ID Room BBB (généré automatiquement)'), + ), + migrations.AlterField( + model_name='webclassslot', + name='room_id', + field=models.CharField(blank=True, max_length=255, null=True, verbose_name='ID Room BBB (généré automatiquement)'), + ), + ] -- 2.39.5