# Generated by Django 6.1 on 2026-08-19 16:25

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('notifications', '0003_alter_notification_kind'),
    ]

    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'), ('FETCH_ERRORS', 'URLs que Google no pudo descargar'), ('CRAWL_BLOCKED', 'URLs bloqueadas por robots.txt'), ('EXPORT_READY', 'Una exportación quedó lista')], max_length=30),
        ),
    ]
