# Choices-only change for JDApprovalRequest.status — adds the AUTO_CLOSED
# ("Already Approved") terminal state used for multi-approver synchronization.
# This does not alter the database column (still varchar(12)); it only keeps the
# migration state consistent with the model's choices.
from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('jobs', '0019_alter_jobdescription_status'),
    ]

    operations = [
        migrations.AlterField(
            model_name='jdapprovalrequest',
            name='status',
            field=models.CharField(
                choices=[
                    ('PENDING', 'Pending'),
                    ('APPROVED', 'Approved'),
                    ('REJECTED', 'Rejected'),
                    ('AUTO_CLOSED', 'Already Approved'),
                ],
                default='PENDING',
                max_length=12,
            ),
        ),
    ]
