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'}, + ), + ]