# Generated by Django 6.0.1 on 2026-07-08 10:02 from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('complaints', '0039_remove_inquiry_dept_response_acceptance_notes_and_more'), ] operations = [ migrations.AlterField( model_name='complaint', name='relation_to_patient', field=models.CharField(blank=True, choices=[('patient', 'Patient'), ('relative', 'Relative')], help_text="Complainant's relationship to the patient", max_length=20, verbose_name='Complinant'), ), ]