This commit is contained in:
Angelo Rodriguez 2024-12-04 09:37:01 +01:00
parent d2e6b65a12
commit 34f3367a08
13 changed files with 175 additions and 519 deletions

View file

@ -0,0 +1,22 @@
# Generated by Django 4.2.16 on 2024-12-03 14:24
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("core", "0008_berichtsheft_needs_rewrite"),
]
operations = [
migrations.AddField(
model_name="berichtsheft",
name="kind",
field=models.CharField(
choices=[("weekly", "Weekly"), ("daily", "Daily")],
default="weekly",
max_length=20,
),
),
]

View file

@ -0,0 +1,18 @@
# 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),
),
]