]> git.parisson.com Git - teleforma.git/commitdiff
add migration
authorGuillaume Pellerin <guillaume.pellerin@parisson.com>
Fri, 13 Sep 2024 06:01:28 +0000 (08:01 +0200)
committerGuillaume Pellerin <guillaume.pellerin@parisson.com>
Fri, 13 Sep 2024 06:01:28 +0000 (08:01 +0200)
teleforma/migrations/0018_auto_20240913_0756.py [new file with mode: 0644]

diff --git a/teleforma/migrations/0018_auto_20240913_0756.py b/teleforma/migrations/0018_auto_20240913_0756.py
new file mode 100644 (file)
index 0000000..5fbe2f2
--- /dev/null
@@ -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'),
+        ),
+    ]