work + report draft

This commit is contained in:
JMARyA 2024-12-05 13:45:51 +01:00
parent 43fe9aea31
commit 7a70163e76
Signed by: jmarya
GPG key ID: 901B2ADDF27C2263
42 changed files with 228 additions and 19 deletions

1
core/migrations/0001_initial.py Executable file → Normal file
View file

@ -6,7 +6,6 @@ import django.db.models.deletion
class Migration(migrations.Migration):
initial = True
dependencies = [

1
core/migrations/0002_alter_berichtsheft_id.py Executable file → Normal file
View file

@ -4,7 +4,6 @@ from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("core", "0001_initial"),
]

View file

@ -8,7 +8,6 @@ import django.utils.timezone
class Migration(migrations.Migration):
dependencies = [
("auth", "0012_alter_user_first_name_max_length"),
("core", "0002_alter_berichtsheft_id"),

View file

@ -4,7 +4,6 @@ from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
("core", "0003_group_azureuser_alter_berichtsheft_user"),
]

View file

@ -7,7 +7,6 @@ import django.utils.timezone
class Migration(migrations.Migration):
dependencies = [
("auth", "0012_alter_user_first_name_max_length"),
("core", "0004_remove_berichtsheft_approved_by"),

1
core/migrations/0006_berichtsheft_num.py Executable file → Normal file
View file

@ -4,7 +4,6 @@ from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("core", "0005_user_alter_berichtsheft_user_delete_azureuser"),
]

1
core/migrations/0007_approval.py Executable file → Normal file
View file

@ -5,7 +5,6 @@ import django.db.models.deletion
class Migration(migrations.Migration):
dependencies = [
("core", "0006_berichtsheft_num"),
]

1
core/migrations/0008_berichtsheft_needs_rewrite.py Executable file → Normal file
View file

@ -4,7 +4,6 @@ from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("core", "0007_approval"),
]

1
core/migrations/0009_berichtsheft_kind.py Executable file → Normal file
View file

@ -4,7 +4,6 @@ from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("core", "0008_berichtsheft_needs_rewrite"),
]

1
core/migrations/0010_berichtsheft_department.py Executable file → Normal file
View file

@ -4,7 +4,6 @@ from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("core", "0009_berichtsheft_kind"),
]

View file

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

0
core/migrations/__init__.py Executable file → Normal file
View file