azube/core/migrations/0010_berichtsheft_department.py

18 lines
403 B
Python
Raw Normal View History

2024-12-04 09:37:01 +01:00
# Generated by Django 4.2.16 on 2024-12-03 15:51
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("core", "0009_berichtsheft_kind"),
]
operations = [
migrations.AddField(
model_name="berichtsheft",
name="department",
field=models.CharField(default="", max_length=160),
),
]