from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('schools', '0057_class_competency_comment'),
    ]

    operations = [
        migrations.AlterField(
            model_name='school',
            name='school_category',
            field=models.CharField(
                choices=[
                    ('PRIMARY', 'Primary (Grades 1–6)'),
                    ('JUNIOR', 'Junior (Grades 7–9)'),
                    ('SENIOR', 'Senior (Grades 10–12)'),
                    ('COMPREHENSIVE', 'Comprehensive (Primary + Junior)'),
                    ('ALL_THROUGH', 'All Through (Pre School to Advanced)'),
                ],
                default='PRIMARY',
                max_length=20,
            ),
        ),
    ]
