# Generated by Django 5.2.4 on 2025-12-26 19:09

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ("calls", "0021_notification_company_usermessage_company"),
    ]

    operations = [
        migrations.AddField(
            model_name="usermessage",
            name="twilio_call_sid",
            field=models.CharField(
                blank=True,
                help_text="To update record-off-time-message",
                max_length=255,
                null=True,
                unique=True,
            ),
        ),
    ]
