# Generated by Django 5.2.4 on 2025-09-17 11:56

import django.db.models.deletion
from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('companies', '0012_remove_holiday_description_holiday_hazel_and_more'),
    ]

    operations = [
        migrations.CreateModel(
            name='CompanyBotSettings',
            fields=[
                ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
                ('created_at', models.DateTimeField(auto_now_add=True)),
                ('updated_at', models.DateTimeField(auto_now=True)),
                ('bot_name', models.CharField(help_text='Name of the bot (e.g., Hazel, Maya)', max_length=100)),
                ('phone_number', models.CharField(blank=True, help_text='Phone number of the bot', max_length=20, null=True)),
                ('is_active', models.BooleanField(default=True, help_text='Whether this bot setting is active')),
                ('company', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='bot_settings', to='companies.company')),
            ],
            options={
                'abstract': False,
            },
        ),
    ]
