kaauh_ats/recruitment/migrations/0025_candidate_recommendation.py
2025-10-19 17:23:06 +03:00

19 lines
433 B
Python

# Generated by Django 5.2.4 on 2025-10-17 21:35
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('recruitment', '0024_alter_zoommeeting_status'),
]
operations = [
migrations.AddField(
model_name='candidate',
name='recommendation',
field=models.TextField(blank=True, verbose_name='Recommendation'),
),
]