20 lines
454 B
Python
20 lines
454 B
Python
# Generated by Django 5.2.6 on 2025-10-08 17:46
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('recruitment', '0001_initial'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='candidate',
|
|
name='address',
|
|
field=models.TextField(default='', max_length=200, verbose_name='Address'),
|
|
preserve_default=False,
|
|
),
|
|
]
|