chore(migrations): Reflect the change in models.Meta

This commit is contained in:
Tom Hubrecht 2024-09-25 13:56:34 +02:00
parent 91d5d68da3
commit 48005ae251
Signed by: thubrecht
SSH key fingerprint: SHA256:r+nK/SIcWlJ0zFZJGHtlAoRwq1Rm+WcKAm5ADYMoQPc

View file

@ -0,0 +1,28 @@
# Generated by Django 4.2.12 on 2024-09-24 20:22
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
("dgsi", "0004_bylaws_statutes_user_accepted_bylaws_and_more"),
]
operations = [
migrations.AlterModelOptions(
name="bylaws",
options={
"get_latest_by": "date",
"verbose_name": "Règlement Intérieur",
"verbose_name_plural": "Règlements Intérieurs",
},
),
migrations.AlterModelOptions(
name="statutes",
options={
"get_latest_by": "date",
"verbose_name": "Statuts",
"verbose_name_plural": "Statuts",
},
),
]