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

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('credentials', '0004_remove_googleproject_un_proyecto_por_identificador_y_cuenta_and_more'),
    ]

    operations = [
        migrations.AlterField(
            model_name='credential',
            name='kind',
            field=models.CharField(choices=[('SERVICE_ACCOUNT', 'Service account'), ('DELEGATED_USER', 'Delegated user')], default='SERVICE_ACCOUNT', max_length=20),
        ),
        migrations.AlterField(
            model_name='credential',
            name='last_error_code',
            field=models.CharField(blank=True, choices=[('INVALID_KEY', 'The key is not valid'), ('API_NOT_ENABLED', 'The API is not enabled in the project'), ('PROJECT_MISMATCH', 'The key does not belong to the declared project'), ('NO_PROPERTIES', 'The service account has no authorized properties'), ('PROVIDER_UNAVAILABLE', 'Google did not answer')], default='', max_length=30),
        ),
        migrations.AlterField(
            model_name='credential',
            name='status',
            field=models.CharField(choices=[('UNVERIFIED', 'Unverified'), ('VERIFIED', 'Verified'), ('INVALID', 'Invalid'), ('REVOKED', 'Revoked')], default='UNVERIFIED', max_length=20),
        ),
    ]
