# Generated by Django 6.1 on 2026-08-21 08:26

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('notifications', '0006_notification_text_as_key_and_params'),
    ]

    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')], max_length=30),
        ),
        migrations.AlterField(
            model_name='notification',
            name='level',
            field=models.CharField(choices=[('INFO', 'Info'), ('ACTION', 'Action')], default='INFO', max_length=10),
        ),
    ]
