image feature + refactor

This commit is contained in:
JMARyA 2024-12-06 12:10:30 +01:00
parent 73e019de9a
commit d64efb663a
Signed by: jmarya
GPG key ID: 901B2ADDF27C2263
13 changed files with 221 additions and 37 deletions

View 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),
),
]