# Generated by Django 4.1.4 on 2024-11-19 11:59

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('customer_api', '0176_conversationcustomers'),
    ]

    operations = [
        migrations.CreateModel(
            name='CommunityChannels',
            fields=[
                ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
                ('channel_name', models.CharField(max_length=244, null=True)),
                ('twilio_channel_sid', models.CharField(max_length=244, null=True)),
                ('last_message', models.DateTimeField(null=True)),
                ('created_at', models.DateTimeField(auto_now_add=True)),
                ('updated_at', models.DateTimeField(auto_now=True)),
                ('end_date', models.DateTimeField(null=True)),
            ],
            options={
                'db_table': 'community_channels',
            },
        ),
    ]
