]> git.parisson.com Git - teleforma.git/commitdiff
add migration feature/ssl
authorGuillaume Pellerin <guillaume.pellerin@parisson.com>
Wed, 7 Jul 2021 16:39:54 +0000 (18:39 +0200)
committerGuillaume Pellerin <guillaume.pellerin@parisson.com>
Wed, 7 Jul 2021 16:39:54 +0000 (18:39 +0200)
teleforma/migrations/0007_auto_20210707_1715.py [new file with mode: 0644]

diff --git a/teleforma/migrations/0007_auto_20210707_1715.py b/teleforma/migrations/0007_auto_20210707_1715.py
new file mode 100644 (file)
index 0000000..76da145
--- /dev/null
@@ -0,0 +1,23 @@
+# Generated by Django 3.2.3 on 2021-07-07 17:15
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+    dependencies = [
+        ('teleforma', '0006_remove_document_conference'),
+    ]
+
+    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'),
+        ),
+    ]