18 lines
395 B
Python
18 lines
395 B
Python
|
# 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),
|
||
|
),
|
||
|
]
|