29 lines
786 B
Python
Executable file
29 lines
786 B
Python
Executable file
# Generated by Django 4.2.16 on 2024-12-03 12:41
|
|
|
|
from django.db import migrations, models
|
|
import django.db.models.deletion
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("core", "0006_berichtsheft_num"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name="Approval",
|
|
fields=[
|
|
("id", models.AutoField(primary_key=True, serialize=False)),
|
|
("user", models.TextField()),
|
|
(
|
|
"report",
|
|
models.ForeignKey(
|
|
on_delete=django.db.models.deletion.CASCADE,
|
|
related_name="report",
|
|
to="core.berichtsheft",
|
|
),
|
|
),
|
|
],
|
|
),
|
|
]
|