]> git.parisson.com Git - teleforma.git/commitdiff
add migration
authorGuillaume Pellerin <guillaume.pellerin@parisson.com>
Fri, 24 Nov 2023 08:26:14 +0000 (09:26 +0100)
committerGuillaume Pellerin <guillaume.pellerin@parisson.com>
Fri, 24 Nov 2023 08:26:14 +0000 (09:26 +0100)
teleforma/migrations/0007_auto_20231123_0927.py [new file with mode: 0644]

diff --git a/teleforma/migrations/0007_auto_20231123_0927.py b/teleforma/migrations/0007_auto_20231123_0927.py
new file mode 100644 (file)
index 0000000..5cecfd6
--- /dev/null
@@ -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'),
+        ),
+    ]