25 lines
712 B
Python
25 lines
712 B
Python
# Generated by Django 6.0.1 on 2026-07-19 06:23
|
|
|
|
import apps.core.encryption
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('complaints', '0044_alter_complaint_contact_phone_and_more'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='inquiry',
|
|
name='national_id',
|
|
field=apps.core.encryption.EncryptedCharField(blank=True, help_text='National ID/Iqama of the contact', max_length=512),
|
|
),
|
|
migrations.AddField(
|
|
model_name='inquiry',
|
|
name='national_id_hash',
|
|
field=models.CharField(blank=True, db_index=True, max_length=64),
|
|
),
|
|
]
|