# Generated by Django 5.2.4 on 2025-09-28 09:07

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('recharge', '0016_alter_rechargetransaction_paid_via_gateway_plancache'),
    ]

    operations = [
        migrations.CreateModel(
            name='MobileInfoMap',
            fields=[
                ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
                ('mobile', models.CharField(db_index=True, max_length=10, unique=True)),
                ('provider_source', models.CharField(db_index=True, default='Goter', max_length=32)),
                ('operator_code', models.CharField(db_index=True, max_length=20)),
                ('circle_code', models.CharField(db_index=True, max_length=20)),
                ('operator_name', models.CharField(blank=True, max_length=100, null=True)),
                ('circle_name', models.CharField(blank=True, max_length=100, null=True)),
                ('last_payload', models.JSONField(blank=True, null=True)),
                ('lookups', models.PositiveIntegerField(default=0)),
                ('first_seen', models.DateTimeField(auto_now_add=True)),
                ('last_seen', models.DateTimeField(auto_now=True)),
            ],
            options={
                'indexes': [models.Index(fields=['provider_source', 'operator_code'], name='recharge_mo_provide_6549f8_idx'), models.Index(fields=['provider_source', 'circle_code'], name='recharge_mo_provide_a76957_idx')],
            },
        ),
    ]
