Няма описание

0002_alter_lead_source.py 526B

12345678910111213141516171819
  1. # Generated by Django 4.2.24 on 2025-09-23 09:30
  2. from django.db import migrations, models
  3. class Migration(migrations.Migration):
  4. dependencies = [
  5. ('public_frontend', '0001_initial'),
  6. ]
  7. operations = [
  8. migrations.AlterField(
  9. model_name='lead',
  10. name='source',
  11. field=models.CharField(blank=True, choices=[('contact', 'Contact'), ('pickup_request', 'Pickup Request'), ('listing_request', 'Listing Request'), ('other', 'Other')], max_length=64),
  12. ),
  13. ]