From: Guillaume Pellerin Date: Fri, 13 Sep 2024 06:01:28 +0000 (+0200) Subject: add migration X-Git-Tag: 2.8.1-pro~13 X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=02625eae2a5cdcc539489ff54e74a204a7b31af1;p=teleforma.git add migration --- diff --git a/teleforma/migrations/0018_auto_20240913_0756.py b/teleforma/migrations/0018_auto_20240913_0756.py new file mode 100644 index 00000000..5fbe2f25 --- /dev/null +++ b/teleforma/migrations/0018_auto_20240913_0756.py @@ -0,0 +1,24 @@ +# Generated by Django 3.2.23 on 2024-09-13 07:56 + +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + + dependencies = [ + ('teleforma', '0017_conference_permanent'), + ] + + operations = [ + migrations.AddField( + model_name='period', + name='department', + field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='period', to='teleforma.department', verbose_name='department'), + ), + migrations.AlterField( + model_name='conference', + name='permanent', + field=models.BooleanField(default=False, help_text='Sur la fiche conférence, s\'affichera "Selon vos disponibilités" à la place de la date.', verbose_name='Permanent'), + ), + ]