Files
stiftung-management-system/app/stiftung/migrations/0012_verwaltungskosten_quellkonto_and_more.py
Stiftung Development e0c7d0e351 Format code with Black and isort for CI/CD compliance
- 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
2025-09-06 21:04:07 +02:00

62 lines
1.9 KiB
Python

# Generated by Django 5.0.6 on 2025-08-24 20:03
import django.db.models.deletion
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("stiftung", "0011_banktransaction"),
]
operations = [
migrations.AddField(
model_name="verwaltungskosten",
name="quellkonto",
field=models.ForeignKey(
blank=True,
null=True,
on_delete=django.db.models.deletion.SET_NULL,
related_name="ausgaben",
to="stiftung.stiftungskonto",
verbose_name="Quellkonto",
),
),
migrations.AddField(
model_name="verwaltungskosten",
name="zahlungskonto",
field=models.ForeignKey(
blank=True,
null=True,
on_delete=django.db.models.deletion.SET_NULL,
related_name="zahlungen",
to="stiftung.stiftungskonto",
verbose_name="Zahlungskonto",
),
),
migrations.AlterField(
model_name="verwaltungskosten",
name="konto",
field=models.ForeignKey(
blank=True,
help_text="Veraltet - verwende Zahlungskonto und Quellkonto",
null=True,
on_delete=django.db.models.deletion.SET_NULL,
to="stiftung.stiftungskonto",
verbose_name="Konto (Legacy)",
),
),
migrations.AlterField(
model_name="verwaltungskosten",
name="rentmeister",
field=models.ForeignKey(
blank=True,
null=True,
on_delete=django.db.models.deletion.SET_NULL,
to="stiftung.rentmeister",
verbose_name="Zuständiger Rentmeister",
),
),
]