# Generated by Django 5.2.4 on 2026-01-14 16:46

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ("companies", "0023_callcatchphrase_catchphrase_allowed_speakers_and_more"),
    ]

    operations = [
        migrations.AlterField(
            model_name="companybotsettings",
            name="bot_name",
            field=models.CharField(
                choices=[("hazel", "Hazel"), ("maya", "Maya"), ("rebecca", "Rebecca")],
                max_length=50,
            ),
        ),
    ]
