From 04cb096fa526e3ff7c8d0bf589a99430565aa542 Mon Sep 17 00:00:00 2001 From: Jean-Marie Favreau Date: Sat, 17 Feb 2024 15:46:23 +0100 Subject: [PATCH] Ajout de la migration manquante --- .../migrations/0034_recurrentimport_name.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 src/agenda_culturel/migrations/0034_recurrentimport_name.py diff --git a/src/agenda_culturel/migrations/0034_recurrentimport_name.py b/src/agenda_culturel/migrations/0034_recurrentimport_name.py new file mode 100644 index 0000000..229757b --- /dev/null +++ b/src/agenda_culturel/migrations/0034_recurrentimport_name.py @@ -0,0 +1,18 @@ +# Generated by Django 4.2.7 on 2024-02-17 14:21 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('agenda_culturel', '0033_categorisationrule'), + ] + + operations = [ + migrations.AddField( + model_name='recurrentimport', + name='name', + field=models.CharField(default='', help_text='Recurrent import name', max_length=512, verbose_name='Name'), + ), + ]