19 lines
488 B
Python
19 lines
488 B
Python
# Generated by Django 5.2.6 on 2025-11-13 14:24
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('recruitment', '0002_jobposting_ai_parsed'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='hiringagency',
|
|
name='generated_password',
|
|
field=models.CharField(blank=True, help_text='Generated password for agency user account', max_length=255, null=True),
|
|
),
|
|
]
|