25 lines
713 B
Python
25 lines
713 B
Python
# Generated by Django 6.0.1 on 2026-07-18 15:10
|
|
|
|
import apps.core.encryption
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('appreciation', '0008_remove_ai_analyzed_status'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='appreciation',
|
|
name='national_id',
|
|
field=apps.core.encryption.EncryptedCharField(blank=True, help_text='National ID/Iqama of the submitter', max_length=512),
|
|
),
|
|
migrations.AddField(
|
|
model_name='appreciation',
|
|
name='national_id_hash',
|
|
field=models.CharField(blank=True, db_index=True, max_length=64),
|
|
),
|
|
]
|