uchill/backend/apps/users/migrations/0014_add_removed_status.py

30 lines
1005 B
Python

# Generated by Django 4.2.7 on 2026-03-12 21:03
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("users", "0013_invitation_link_model"),
]
operations = [
migrations.AlterField(
model_name="mentorstudentconnection",
name="status",
field=models.CharField(
choices=[
("pending_mentor", "Ожидает ответа ментора"),
("pending_student", "Ожидает подтверждения студента"),
("pending_parent", "Ожидает подтверждения родителя"),
("accepted", "Принято"),
("rejected", "Отклонено"),
("removed", "Удалено"),
],
db_index=True,
max_length=20,
verbose_name="Статус",
),
),
]