19 lines
500 B
Python
19 lines
500 B
Python
# Generated by Django 5.2.6 on 2025-11-23 12:31
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('recruitment', '0005_alter_interviewschedule_template_location'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='customuser',
|
|
name='email',
|
|
field=models.EmailField(error_messages={'unique': 'A user with this email already exists.'}, max_length=254, unique=True),
|
|
),
|
|
]
|