From: Guillaume Pellerin Date: Wed, 7 Jul 2021 16:39:54 +0000 (+0200) Subject: add migration X-Git-Tag: 2.3~11^2^2 X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=84406b2b654d22a8afd878ec68826d7a66044e6c;p=teleforma.git add migration --- diff --git a/teleforma/migrations/0007_auto_20210707_1715.py b/teleforma/migrations/0007_auto_20210707_1715.py new file mode 100644 index 00000000..76da145f --- /dev/null +++ b/teleforma/migrations/0007_auto_20210707_1715.py @@ -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'), + ), + ]