]> git.parisson.com Git - teleforma.git/commitdiff
add migration
authorGuillaume Pellerin <guillaume.pellerin@parisson.com>
Tue, 3 Aug 2021 22:31:39 +0000 (00:31 +0200)
committerGuillaume Pellerin <guillaume.pellerin@parisson.com>
Tue, 3 Aug 2021 22:31:39 +0000 (00:31 +0200)
teleforma/migrations/0009_alter_conference_public_id.py [new file with mode: 0644]

diff --git a/teleforma/migrations/0009_alter_conference_public_id.py b/teleforma/migrations/0009_alter_conference_public_id.py
new file mode 100644 (file)
index 0000000..3027d12
--- /dev/null
@@ -0,0 +1,18 @@
+# Generated by Django 3.2.3 on 2021-08-03 22:59
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+    dependencies = [
+        ('teleforma', '0008_auto_20210715_1424'),
+    ]
+
+    operations = [
+        migrations.AlterField(
+            model_name='conference',
+            name='public_id',
+            field=models.CharField(blank=True, max_length=255, unique=True, verbose_name='public_id'),
+        ),
+    ]