# Generated by Django 5.1 on 2025-08-07 16:51 from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('biz', '0002_alter_prospect_email'), ] operations = [ migrations.AlterField( model_name='activity', name='status', field=models.CharField(blank=True, choices=[('NONE', 'None'), ('INBOUND', 'Inbound'), ('CONTACTED', 'Contacted'), ('RESPONDED', 'Responded'), ('SHOULD_TEST', 'Should test'), ('TESTING', 'Testing'), ('CUSTOMER', 'Customer'), ('LOST', 'Lost customer'), ('DECLINED', 'Declined'), ('NOT_CONCERNED', 'Not concerned'), ('SHOULD_BUY', 'Should buy')], max_length=50, null=True), ), ]