| 12345678910111213141516171819 |
- # Generated by Django 4.2.24 on 2025-09-23 09:30
- from django.db import migrations, models
- class Migration(migrations.Migration):
- dependencies = [
- ('public_frontend', '0001_initial'),
- ]
- operations = [
- migrations.AlterField(
- model_name='lead',
- name='source',
- field=models.CharField(blank=True, choices=[('contact', 'Contact'), ('pickup_request', 'Pickup Request'), ('listing_request', 'Listing Request'), ('other', 'Other')], max_length=64),
- ),
- ]
|