# Generated by Django 6.1 on 2026-08-26 04:15

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('notifications', '0007_alter_notification_kind_alter_notification_level'),
    ]

    operations = [
        migrations.AlterField(
            model_name='notification',
            name='kind',
            field=models.CharField(choices=[('BATCH_FINISHED', 'A batch finished'), ('BATCH_FAILED', 'A batch failed'), ('ACCESS_LOST', 'Access to a property was lost'), ('CREDENTIAL_INVALID', 'The credential stopped working'), ('COVERAGE_DROP', 'URLs that stopped being indexed'), ('FETCH_ERRORS', 'URLs Google could not download'), ('CRAWL_BLOCKED', 'URLs blocked by robots.txt'), ('EXPORT_READY', 'An export is ready'), ('INDEXING_BATCH_READY', 'An indexing batch is waiting')], max_length=30),
        ),
    ]
