From 292855d21f4e92efbcfbf5deac1a201fab85d90c Mon Sep 17 00:00:00 2001 From: Gregory Trullemans Date: Fri, 6 May 2022 21:42:47 +0200 Subject: [PATCH] New migrations --- .../migrations/0009_alter_contract_title.py | 18 ++++++++++++++++++ .../migrations/0018_alter_event_options.py | 17 +++++++++++++++++ 2 files changed, 35 insertions(+) create mode 100644 billing/migrations/0009_alter_contract_title.py create mode 100644 eventCompta/migrations/0018_alter_event_options.py diff --git a/billing/migrations/0009_alter_contract_title.py b/billing/migrations/0009_alter_contract_title.py new file mode 100644 index 0000000..97447ca --- /dev/null +++ b/billing/migrations/0009_alter_contract_title.py @@ -0,0 +1,18 @@ +# Generated by Django 4.0.1 on 2022-05-06 19:41 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('billing', '0008_rename_name_contract_title'), + ] + + operations = [ + migrations.AlterField( + model_name='contract', + name='title', + field=models.CharField(max_length=255, verbose_name='Titre'), + ), + ] diff --git a/eventCompta/migrations/0018_alter_event_options.py b/eventCompta/migrations/0018_alter_event_options.py new file mode 100644 index 0000000..6d11b49 --- /dev/null +++ b/eventCompta/migrations/0018_alter_event_options.py @@ -0,0 +1,17 @@ +# Generated by Django 4.0.1 on 2022-05-06 19:41 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('eventCompta', '0017_rename_datebegin_event_date_begin_and_more'), + ] + + operations = [ + migrations.AlterModelOptions( + name='event', + options={'ordering': ['name', 'year'], 'verbose_name': 'Evènement', 'verbose_name_plural': 'Evènements'}, + ), + ]