20 lines
589 B
Python
20 lines
589 B
Python
# Generated by Django 6.0.1 on 2026-07-18 14:46
|
|
|
|
import apps.core.validators
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('observations', '0020_remove_observation_dept_response_acceptance_notes_and_more'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='observation',
|
|
name='reporter_phone',
|
|
field=models.CharField(blank=True, help_text='Optional phone number for follow-up', max_length=20, validators=[apps.core.validators.validate_saudi_phone]),
|
|
),
|
|
]
|