Freitextfeld Patienten

Fixes #53
This commit is contained in:
gw3000 2023-08-26 10:33:40 +02:00
parent c6d6251556
commit e8f7a53c01
2 changed files with 20 additions and 0 deletions

View file

@ -0,0 +1,18 @@
# Generated by Django 4.2.4 on 2023-08-26 08:28
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('bird', '0003_fallenbird_comment'),
]
operations = [
migrations.AlterField(
model_name='fallenbird',
name='comment',
field=models.TextField(blank=True, null=True, verbose_name='Bemerkung'),
),
]