22 lines
548 B
Python
22 lines
548 B
Python
# Generated by Django 2.2.24 on 2022-01-18 14:25
|
|
|
|
import django.db.models.functions.text
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("partitions", "0005_setlist"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterModelOptions(
|
|
name="partition",
|
|
options={
|
|
"ordering": (django.db.models.functions.text.Lower("nom"),),
|
|
"verbose_name": "Partition",
|
|
"verbose_name_plural": "Partitions",
|
|
},
|
|
),
|
|
]
|