azube/core/migrations/0012_berichtsheft_image.py

18 lines
395 B
Python
Raw Permalink Normal View History

2024-12-06 12:10:30 +01:00
# 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),
),
]