Files
stiftung-management-system/app/stiftung/migrations/0009_alter_dokumentlink_paperless_document_id.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

19 lines
416 B
Python

# Generated by Django 5.0.6 on 2025-08-23 21:39
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("stiftung", "0008_dokumentlink_destinataer_id_and_more"),
]
operations = [
migrations.AlterField(
model_name="dokumentlink",
name="paperless_document_id",
field=models.IntegerField(),
),
]