work + report draft
This commit is contained in:
parent
43fe9aea31
commit
7a70163e76
42 changed files with 228 additions and 19 deletions
1
core/migrations/0001_initial.py
Executable file → Normal file
1
core/migrations/0001_initial.py
Executable file → Normal 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
1
core/migrations/0002_alter_berichtsheft_id.py
Executable file → Normal file
|
@ -4,7 +4,6 @@ from django.db import migrations, models
|
|||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
("core", "0001_initial"),
|
||||
]
|
||||
|
|
1
core/migrations/0003_group_azureuser_alter_berichtsheft_user.py
Executable file → Normal file
1
core/migrations/0003_group_azureuser_alter_berichtsheft_user.py
Executable file → Normal 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"),
|
||||
|
|
1
core/migrations/0004_remove_berichtsheft_approved_by.py
Executable file → Normal file
1
core/migrations/0004_remove_berichtsheft_approved_by.py
Executable file → Normal file
|
@ -4,7 +4,6 @@ from django.db import migrations
|
|||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
("core", "0003_group_azureuser_alter_berichtsheft_user"),
|
||||
]
|
||||
|
|
1
core/migrations/0005_user_alter_berichtsheft_user_delete_azureuser.py
Executable file → Normal file
1
core/migrations/0005_user_alter_berichtsheft_user_delete_azureuser.py
Executable file → Normal 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
1
core/migrations/0006_berichtsheft_num.py
Executable file → Normal 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
1
core/migrations/0007_approval.py
Executable file → Normal 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
1
core/migrations/0008_berichtsheft_needs_rewrite.py
Executable file → Normal 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
1
core/migrations/0009_berichtsheft_kind.py
Executable file → Normal 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
1
core/migrations/0010_berichtsheft_department.py
Executable file → Normal file
|
@ -4,7 +4,6 @@ from django.db import migrations, models
|
|||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
("core", "0009_berichtsheft_kind"),
|
||||
]
|
||||
|
|
20
core/migrations/0011_berichtsheftdraft.py
Normal file
20
core/migrations/0011_berichtsheftdraft.py
Normal 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
0
core/migrations/__init__.py
Executable file → Normal file
Loading…
Add table
Add a link
Reference in a new issue