From ca6c7889a509a5a0c47a25e7c328c278d2e4a62a Mon Sep 17 00:00:00 2001 From: Jean-Marie Favreau Date: Sun, 22 Dec 2024 15:53:52 +0100 Subject: [PATCH] Ajout d'un fichier manquant --- .../0130_recurrentimport_forcelocation.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 src/agenda_culturel/migrations/0130_recurrentimport_forcelocation.py diff --git a/src/agenda_culturel/migrations/0130_recurrentimport_forcelocation.py b/src/agenda_culturel/migrations/0130_recurrentimport_forcelocation.py new file mode 100644 index 0000000..9befee0 --- /dev/null +++ b/src/agenda_culturel/migrations/0130_recurrentimport_forcelocation.py @@ -0,0 +1,18 @@ +# Generated by Django 4.2.9 on 2024-12-22 15:19 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('agenda_culturel', '0129_batchimportation_agenda_cult_created_a23990_idx_and_more'), + ] + + operations = [ + migrations.AddField( + model_name='recurrentimport', + name='forceLocation', + field=models.BooleanField(default=False, help_text='force location even if another is detected.', verbose_name='Force location'), + ), + ]