20 lines
558 B
Python
20 lines
558 B
Python
# Generated by Django 4.2.17 on 2024-12-05 10:37
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
("core", "0010_berichtsheft_department"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name="BerichtsheftDraft",
|
|
fields=[
|
|
("user", models.TextField(primary_key=True, serialize=False)),
|
|
("department", models.CharField(default="", max_length=160)),
|
|
("content", models.JSONField()),
|
|
],
|
|
),
|
|
]
|