# Generated by Django 6.1 on 2026-08-19 14:53

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('notifications', '0002_remove_notification_un_aviso_por_hecho_y_cuenta_and_more'),
    ]

    operations = [
        migrations.AlterField(
            model_name='notification',
            name='kind',
            field=models.CharField(choices=[('BATCH_FINISHED', 'Un lote terminó'), ('BATCH_FAILED', 'Un lote falló'), ('ACCESS_LOST', 'Se perdió el acceso a una propiedad'), ('CREDENTIAL_INVALID', 'La credencial dejó de servir'), ('COVERAGE_DROP', 'URLs que dejaron de estar indexadas'), ('EXPORT_READY', 'Una exportación quedó lista')], max_length=30),
        ),
    ]
