# Generated by Django 4.2.2 on 2025-09-22 04:14

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('customermanagement', '0004_customer_is_email_verified_customer_is_reg_blocked'),
    ]

    operations = [
        migrations.AddField(
            model_name='customer',
            name='global_fail_count',
            field=models.IntegerField(default=0),
        ),
        migrations.AddIndex(
            model_name='emailotp',
            index=models.Index(fields=['customer', 'is_valid', 'is_utilized', 'created_At'], name='customerman_custome_64cfc4_idx'),
        ),
    ]
