image feature + refactor
This commit is contained in:
parent
73e019de9a
commit
d64efb663a
13 changed files with 221 additions and 37 deletions
17
core/migrations/0012_berichtsheft_image.py
Normal file
17
core/migrations/0012_berichtsheft_image.py
Normal file
|
@ -0,0 +1,17 @@
|
|||
# Generated by Django 4.2.17 on 2024-12-06 09:38
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
dependencies = [
|
||||
("core", "0011_berichtsheftdraft"),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name="berichtsheft",
|
||||
name="image",
|
||||
field=models.BinaryField(blank=True, null=True),
|
||||
),
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue