azube/core/migrations/0009_berichtsheft_kind.py

22 lines
526 B
Python
Raw Permalink Normal View History

2024-12-04 09:37:01 +01:00
# 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,
),
),
]