19 lines
449 B
Python
19 lines
449 B
Python
# Generated by Django 5.2.6 on 2025-11-15 20:42
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('recruitment', '0004_alter_person_gender'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='person',
|
|
name='gpa',
|
|
field=models.DecimalField(blank=True, decimal_places=2, max_digits=3, null=True, verbose_name='GPA'),
|
|
),
|
|
]
|