- Apply Black formatting to all Python files in core and stiftung modules - Fix import statement ordering with isort - Ensure all code meets automated quality standards - Resolve CI/CD pipeline formatting failures - Maintain consistent code style across the entire codebase
19 lines
443 B
Python
19 lines
443 B
Python
# Generated by Django 5.0.6 on 2025-08-31 21:22
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("stiftung", "0023_remove_legacy_verpachtung"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="dokumentlink",
|
|
name="abrechnung_id",
|
|
field=models.UUIDField(blank=True, null=True, verbose_name="Abrechnung ID"),
|
|
),
|
|
]
|