introduce message field in lead form
This commit is contained in:
parent
5eb40ffc4f
commit
ddec9d1126
7 changed files with 46 additions and 5 deletions
18
hub/services/migrations/0004_lead_message.py
Normal file
18
hub/services/migrations/0004_lead_message.py
Normal 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),
|
||||
),
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue