35301-vm/core/migrations/0003_lead_status.py
2025-10-28 12:22:51 +00:00

19 lines
592 B
Python

# Generated by Django 5.2.7 on 2025-10-28 12:21
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('core', '0002_call'),
]
operations = [
migrations.AddField(
model_name='lead',
name='status',
field=models.CharField(choices=[('New', 'New'), ('Contacted', 'Contacted'), ('In Progress', 'In Progress'), ('Proposal Sent', 'Proposal Sent'), ('Closed Won', 'Closed Won'), ('Closed Lost', 'Closed Lost'), ('No Answer', 'No Answer')], default='New', max_length=50),
),
]