diff --git a/src/agenda_culturel/migrations/0032_alter_recurrentimport_defaultcategory_and_more.py b/src/agenda_culturel/migrations/0032_alter_recurrentimport_defaultcategory_and_more.py new file mode 100644 index 0000000..0011271 --- /dev/null +++ b/src/agenda_culturel/migrations/0032_alter_recurrentimport_defaultcategory_and_more.py @@ -0,0 +1,24 @@ +# Generated by Django 4.2.7 on 2024-02-17 08:45 + +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + + dependencies = [ + ('agenda_culturel', '0031_recurrentimport_defaultpublished'), + ] + + operations = [ + migrations.AlterField( + model_name='recurrentimport', + name='defaultCategory', + field=models.ForeignKey(default=1, help_text='Category of each imported event', on_delete=django.db.models.deletion.SET_DEFAULT, to='agenda_culturel.category', verbose_name='Category'), + ), + migrations.AlterField( + model_name='recurrentimport', + name='processor', + field=models.CharField(choices=[('ical', 'ical'), ('icalnobusy', 'ical no busy'), ('icalnovc', 'ical no VC')], default='ical', max_length=20, verbose_name='Processor'), + ), + ]