20 lines
473 B
Python
20 lines
473 B
Python
# Generated by Django 5.2.7 on 2025-12-07 13:38
|
|
|
|
import encrypted_model_fields.fields
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('recruitment', '0001_initial'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='person',
|
|
name='address',
|
|
field=encrypted_model_fields.fields.EncryptedTextField(blank=True, null=True, verbose_name='Address'),
|
|
),
|
|
]
|