chore(migrations): Reflect the change in models.Meta
This commit is contained in:
parent
91d5d68da3
commit
48005ae251
1 changed files with 28 additions and 0 deletions
|
@ -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",
|
||||
},
|
||||
),
|
||||
]
|
Loading…
Reference in a new issue