# Generated by Django 5.2.1 on 2025-08-15 06:51

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('account', '0138_remove_apr_course_and_cdrs_remove_apr_mil_values_and_more'),
    ]

    operations = [
        migrations.AlterField(
            model_name='apr',
            name='appt',
            field=models.IntegerField(blank=True, choices=[(1, 'Outstanding'), (2, 'Good'), (3, 'Satisfactory'), (4, 'Need Attention'), (5, 'Unsatisfactory')], null=True),
        ),
        migrations.AlterField(
            model_name='apr',
            name='character_traits',
            field=models.IntegerField(blank=True, choices=[(1, 'Outstanding'), (2, 'Good'), (3, 'Satisfactory'), (4, 'Need Attention'), (5, 'Unsatisfactory')], null=True),
        ),
        migrations.AlterField(
            model_name='apr',
            name='comm_skill',
            field=models.IntegerField(blank=True, choices=[(1, 'Outstanding'), (2, 'Good'), (3, 'Satisfactory'), (4, 'Need Attention'), (5, 'Unsatisfactory')], null=True),
        ),
        migrations.AlterField(
            model_name='apr',
            name='firing_efficiency',
            field=models.IntegerField(blank=True, choices=[(1, 'Outstanding'), (2, 'Good'), (3, 'Satisfactory'), (4, 'Need Attention'), (5, 'Unsatisfactory')], null=True),
        ),
        migrations.AlterField(
            model_name='apr',
            name='followership',
            field=models.IntegerField(blank=True, choices=[(1, 'Outstanding'), (2, 'Good'), (3, 'Satisfactory'), (4, 'Need Attention'), (5, 'Unsatisfactory')], null=True),
        ),
        migrations.AlterField(
            model_name='apr',
            name='leadership',
            field=models.IntegerField(blank=True, choices=[(1, 'Outstanding'), (2, 'Good'), (3, 'Satisfactory'), (4, 'Need Attention'), (5, 'Unsatisfactory')], null=True),
        ),
        migrations.AlterField(
            model_name='apr',
            name='physical_efficiency',
            field=models.IntegerField(blank=True, choices=[(1, 'Outstanding'), (2, 'Good'), (3, 'Satisfactory'), (4, 'Need Attention'), (5, 'Unsatisfactory')], null=True),
        ),
        migrations.AlterField(
            model_name='apr',
            name='tactical_efficiency',
            field=models.IntegerField(blank=True, choices=[(1, 'Outstanding'), (2, 'Good'), (3, 'Satisfactory'), (4, 'Need Attention'), (5, 'Unsatisfactory')], null=True),
        ),
        migrations.AlterField(
            model_name='apr',
            name='technical_efficiency',
            field=models.IntegerField(blank=True, choices=[(1, 'Outstanding'), (2, 'Good'), (3, 'Satisfactory'), (4, 'Need Attention'), (5, 'Unsatisfactory')], null=True),
        ),
        migrations.AlterField(
            model_name='apr',
            name='turnout_and_bearing',
            field=models.IntegerField(blank=True, choices=[(1, 'Outstanding'), (2, 'Good'), (3, 'Satisfactory'), (4, 'Need Attention'), (5, 'Unsatisfactory')], null=True),
        ),
        migrations.AlterField(
            model_name='historicalapr',
            name='appt',
            field=models.IntegerField(blank=True, choices=[(1, 'Outstanding'), (2, 'Good'), (3, 'Satisfactory'), (4, 'Need Attention'), (5, 'Unsatisfactory')], null=True),
        ),
        migrations.AlterField(
            model_name='historicalapr',
            name='character_traits',
            field=models.IntegerField(blank=True, choices=[(1, 'Outstanding'), (2, 'Good'), (3, 'Satisfactory'), (4, 'Need Attention'), (5, 'Unsatisfactory')], null=True),
        ),
        migrations.AlterField(
            model_name='historicalapr',
            name='comm_skill',
            field=models.IntegerField(blank=True, choices=[(1, 'Outstanding'), (2, 'Good'), (3, 'Satisfactory'), (4, 'Need Attention'), (5, 'Unsatisfactory')], null=True),
        ),
        migrations.AlterField(
            model_name='historicalapr',
            name='firing_efficiency',
            field=models.IntegerField(blank=True, choices=[(1, 'Outstanding'), (2, 'Good'), (3, 'Satisfactory'), (4, 'Need Attention'), (5, 'Unsatisfactory')], null=True),
        ),
        migrations.AlterField(
            model_name='historicalapr',
            name='followership',
            field=models.IntegerField(blank=True, choices=[(1, 'Outstanding'), (2, 'Good'), (3, 'Satisfactory'), (4, 'Need Attention'), (5, 'Unsatisfactory')], null=True),
        ),
        migrations.AlterField(
            model_name='historicalapr',
            name='leadership',
            field=models.IntegerField(blank=True, choices=[(1, 'Outstanding'), (2, 'Good'), (3, 'Satisfactory'), (4, 'Need Attention'), (5, 'Unsatisfactory')], null=True),
        ),
        migrations.AlterField(
            model_name='historicalapr',
            name='physical_efficiency',
            field=models.IntegerField(blank=True, choices=[(1, 'Outstanding'), (2, 'Good'), (3, 'Satisfactory'), (4, 'Need Attention'), (5, 'Unsatisfactory')], null=True),
        ),
        migrations.AlterField(
            model_name='historicalapr',
            name='tactical_efficiency',
            field=models.IntegerField(blank=True, choices=[(1, 'Outstanding'), (2, 'Good'), (3, 'Satisfactory'), (4, 'Need Attention'), (5, 'Unsatisfactory')], null=True),
        ),
        migrations.AlterField(
            model_name='historicalapr',
            name='technical_efficiency',
            field=models.IntegerField(blank=True, choices=[(1, 'Outstanding'), (2, 'Good'), (3, 'Satisfactory'), (4, 'Need Attention'), (5, 'Unsatisfactory')], null=True),
        ),
        migrations.AlterField(
            model_name='historicalapr',
            name='turnout_and_bearing',
            field=models.IntegerField(blank=True, choices=[(1, 'Outstanding'), (2, 'Good'), (3, 'Satisfactory'), (4, 'Need Attention'), (5, 'Unsatisfactory')], null=True),
        ),
    ]
