From: Guillaume Pellerin Date: Fri, 29 May 2026 07:19:10 +0000 (+0200) Subject: add migration X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=13e03605cde5a8d3482c82b10deb1382c3606bde;p=teleforma.git add migration --- diff --git a/lib/pdfannotator b/lib/pdfannotator index 1f161760..70e1f183 160000 --- a/lib/pdfannotator +++ b/lib/pdfannotator @@ -1 +1 @@ -Subproject commit 1f161760779798d79a9c0c073f15044c2bcc6e46 +Subproject commit 70e1f1833f63cb9105659b431357be580cdfc659 diff --git a/teleforma/migrations/0039_conference_imported_conference_test.py b/teleforma/migrations/0039_conference_imported_conference_test.py new file mode 100644 index 00000000..4ab11d05 --- /dev/null +++ b/teleforma/migrations/0039_conference_imported_conference_test.py @@ -0,0 +1,23 @@ +# Generated by Django 5.2.13 on 2026-05-29 09:18 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('teleforma', '0038_media_file_s3_alter_documentprivate_file_and_more'), + ] + + operations = [ + migrations.AddField( + model_name='conference', + name='imported', + field=models.BooleanField(default=False, verbose_name='imported'), + ), + migrations.AddField( + model_name='conference', + name='test', + field=models.BooleanField(default=False, verbose_name='test'), + ), + ]