# Generated by Django 5.2.14 on 2026-05-19 20:39 from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('cmmc_audit', '0001_initial'), ] operations = [ migrations.AlterField( model_name='auditevent', name='action', field=models.CharField(choices=[('admin_addition', 'Admin addition'), ('admin_change', 'Admin change'), ('admin_deletion', 'Admin deletion'), ('user_pi_upgraded', 'User upgraded to PI'), ('pi_status_revoked', 'PI status revoked'), ('allocation_requested', 'Allocation created/requested'), ('allocation_status_changed', 'Allocation status changed'), ('allocation_renewed', 'Allocation renewed'), ('project_user_added', 'Project user added'), ('project_user_removed', 'Project user removed'), ('project_user_role_changed', 'Project user role changed')], max_length=64), ), ]