25 lines
755 B
Python
25 lines
755 B
Python
# Generated by Django 5.2.6 on 2025-11-15 20:56
|
|
|
|
import recruitment.validators
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('recruitment', '0005_person_gpa'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='customuser',
|
|
name='designation',
|
|
field=models.CharField(blank=True, max_length=100, null=True, verbose_name='Designation'),
|
|
),
|
|
migrations.AddField(
|
|
model_name='customuser',
|
|
name='profile_image',
|
|
field=models.ImageField(blank=True, null=True, upload_to='profile_pic/', validators=[recruitment.validators.validate_image_size], verbose_name='Profile Image'),
|
|
),
|
|
]
|