sent to on sent to

This commit is contained in:
gw3000 2023-07-12 18:44:23 +02:00
parent 24249a13ea
commit 2a6bd1bcd3
4 changed files with 43 additions and 4 deletions

View file

@ -0,0 +1,18 @@
# Generated by Django 4.2.3 on 2023-07-12 16:25
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('bird', '0002_alter_fallenbird_costs'),
]
operations = [
migrations.AddField(
model_name='fallenbird',
name='sent_to',
field=models.CharField(blank=True, max_length=256, null=True, verbose_name='Übersandt nach'),
),
]