# Generated by Django 5.2.4 on 2025-12-01 20:03

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


class Migration(migrations.Migration):

    dependencies = [
        ('calls', '0010_call_caller_name'),
        ('companies', '0017_alter_company_website'),
    ]

    operations = [
        migrations.CreateModel(
            name='TonyCall',
            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)),
                ('end_reason', models.CharField(max_length=255)),
                ('call_id', models.CharField(max_length=255)),
                ('recording_url', models.CharField(max_length=255)),
                ('transcript', models.TextField(blank=True)),
                ('call_date_time', models.DateTimeField(blank=True, null=True)),
                ('intention', models.CharField(max_length=255)),
                ('rescheduled', models.CharField(max_length=255)),
                ('booking_datetime', models.DateTimeField(blank=True, null=True)),
                ('status', models.CharField(max_length=255)),
                ('called_to', models.CharField(max_length=255)),
                ('called_number', models.CharField(max_length=255)),
                ('company', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, to='companies.company')),
            ],
            options={
                'abstract': False,
            },
        ),
    ]
