HH/apps/complaints/migrations/0036_alter_complaint_relation_to_patient.py
2026-07-05 21:34:34 +03:00

19 lines
620 B
Python

# Generated by Django 6.0.1 on 2026-07-05 14:06
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('complaints', '0035_involved_department_routing_rejection'),
]
operations = [
migrations.AlterField(
model_name='complaint',
name='relation_to_patient',
field=models.CharField(blank=True, choices=[('patient', 'Patient'), ('relative', 'Relative'), ('friend', 'Friend'), ('other', 'Other')], help_text="Complainant's relationship to the patient", max_length=20, verbose_name='Complinant'),
),
]