work
This commit is contained in:
parent
d2e6b65a12
commit
34f3367a08
13 changed files with 175 additions and 519 deletions
22
core/migrations/0009_berichtsheft_kind.py
Executable file
22
core/migrations/0009_berichtsheft_kind.py
Executable 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,
|
||||
),
|
||||
),
|
||||
]
|
18
core/migrations/0010_berichtsheft_department.py
Executable file
18
core/migrations/0010_berichtsheft_department.py
Executable 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),
|
||||
),
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue