introduce message field in lead form

This commit is contained in:
Tobias Brunner 2025-01-31 17:13:55 +01:00
parent 5eb40ffc4f
commit ddec9d1126
No known key found for this signature in database
7 changed files with 46 additions and 5 deletions

View file

@ -0,0 +1,18 @@
# Generated by Django 5.1.5 on 2025-01-31 16:07
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("services", "0003_serviceoffering_status"),
]
operations = [
migrations.AddField(
model_name="lead",
name="message",
field=models.TextField(blank=True, max_length=1000),
),
]