Description werden nicht gespeichert

Fixes #50 CKEditor does not work properly
This commit is contained in:
Gunther Weissenbaeck 2023-09-10 11:49:33 +02:00
parent 811a690d39
commit faa82cbbea
2 changed files with 21 additions and 2 deletions

View file

@ -0,0 +1,20 @@
# Generated by Django 4.2.5 on 2023-09-10 09:47
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("bird", "0004_alter_fallenbird_comment"),
]
operations = [
migrations.AlterField(
model_name="bird",
name="description",
field=models.CharField(
blank=True, max_length=256, null=True, verbose_name="Beschreibung"
),
),
]