From 2b63a79c5dc10e685bf7e49126845d0b75484f6f Mon Sep 17 00:00:00 2001 From: Jean-Marie Favreau Date: Tue, 13 Aug 2024 15:50:42 +0200 Subject: [PATCH] On corrige le pluriel de lieux --- .../migrations/0065_alter_place_options.py | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 src/agenda_culturel/migrations/0065_alter_place_options.py diff --git a/src/agenda_culturel/migrations/0065_alter_place_options.py b/src/agenda_culturel/migrations/0065_alter_place_options.py new file mode 100644 index 0000000..a95530b --- /dev/null +++ b/src/agenda_culturel/migrations/0065_alter_place_options.py @@ -0,0 +1,17 @@ +# Generated by Django 4.2.7 on 2024-08-13 13:08 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('agenda_culturel', '0064_alter_recurrentimport_processor'), + ] + + operations = [ + migrations.AlterModelOptions( + name='place', + options={'ordering': ['name'], 'verbose_name': 'Place', 'verbose_name_plural': 'Places'}, + ), + ]