# Generated by Django 5.2.13 on 2026-04-24 13:24

import django.contrib.postgres.fields
from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ("alumni_profiles", "0001_initial"),
    ]

    operations = [
        migrations.AddField(
            model_name="alumniprofile",
            name="mentor_accepting",
            field=models.BooleanField(
                default=False,
                help_text="Opt-in: accept incoming mentorship requests. Off hides you from the matcher.",
            ),
        ),
        migrations.AddField(
            model_name="alumniprofile",
            name="mentor_capacity",
            field=models.PositiveSmallIntegerField(
                default=3,
                help_text="Max concurrent active mentees. The matcher stops recommending you once capacity is full.",
            ),
        ),
        migrations.AddField(
            model_name="alumniprofile",
            name="mentor_statement",
            field=models.TextField(
                blank=True,
                help_text="Short message to prospective mentees — your style, what you offer.",
            ),
        ),
        migrations.AddField(
            model_name="alumniprofile",
            name="mentor_topics",
            field=django.contrib.postgres.fields.ArrayField(
                base_field=models.CharField(max_length=80),
                blank=True,
                default=list,
                help_text="What you mentor on — shown to mentees on the discover page.",
                size=None,
            ),
        ),
        migrations.AddField(
            model_name="historicalalumniprofile",
            name="mentor_accepting",
            field=models.BooleanField(
                default=False,
                help_text="Opt-in: accept incoming mentorship requests. Off hides you from the matcher.",
            ),
        ),
        migrations.AddField(
            model_name="historicalalumniprofile",
            name="mentor_capacity",
            field=models.PositiveSmallIntegerField(
                default=3,
                help_text="Max concurrent active mentees. The matcher stops recommending you once capacity is full.",
            ),
        ),
        migrations.AddField(
            model_name="historicalalumniprofile",
            name="mentor_statement",
            field=models.TextField(
                blank=True,
                help_text="Short message to prospective mentees — your style, what you offer.",
            ),
        ),
        migrations.AddField(
            model_name="historicalalumniprofile",
            name="mentor_topics",
            field=django.contrib.postgres.fields.ArrayField(
                base_field=models.CharField(max_length=80),
                blank=True,
                default=list,
                help_text="What you mentor on — shown to mentees on the discover page.",
                size=None,
            ),
        ),
    ]
