Notfellchen/src/fellchensammlung/migrations/0015_rescueorganization_comment.py
moanos 4e953c83ea
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
feat: Add comment field to RescueOrg
2024-11-09 10:09:46 +01:00

19 lines
446 B
Python

# Generated by Django 5.1.1 on 2024-11-09 09:09
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('fellchensammlung', '0014_rescueorganization_email'),
]
operations = [
migrations.AddField(
model_name='rescueorganization',
name='comment',
field=models.TextField(blank=True, null=True, verbose_name='Kommentar'),
),
]