From: Guillaume Pellerin Date: Fri, 24 Nov 2023 08:26:14 +0000 (+0100) Subject: add migration X-Git-Tag: 2.8.1-ae~2 X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=7562419ac4f69131d4ea64f037f7b19f0acad671;p=teleforma.git add migration --- diff --git a/teleforma/migrations/0007_auto_20231123_0927.py b/teleforma/migrations/0007_auto_20231123_0927.py new file mode 100644 index 00000000..5cecfd63 --- /dev/null +++ b/teleforma/migrations/0007_auto_20231123_0927.py @@ -0,0 +1,23 @@ +# Generated by Django 3.2.13 on 2023-11-23 09:27 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('teleforma', '0006_groupedmessage_studentgroup'), + ] + + operations = [ + migrations.AddField( + model_name='streamingserver', + name='path', + field=models.CharField(blank=True, max_length=256, verbose_name='path'), + ), + migrations.AddField( + model_name='streamingserver', + name='protocol', + field=models.CharField(blank=True, max_length=16, verbose_name='protocol'), + ), + ]