22 lines
663 B
Python
22 lines
663 B
Python
# Generated by Django 6.0.1 on 2026-02-12 13:43
|
|
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('dokumente', '0011_alter_einleitung_options_and_more'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterModelOptions(
|
|
name='einleitung',
|
|
options={'ordering': ['order'], 'verbose_name': 'Einleitungs-Abschnitt', 'verbose_name_plural': 'Einleitung'},
|
|
),
|
|
migrations.AlterModelOptions(
|
|
name='geltungsbereich',
|
|
options={'ordering': ['order'], 'verbose_name': 'Geltungsbereichs-Abschnitt', 'verbose_name_plural': 'Geltungsbereich'},
|
|
),
|
|
]
|