# Generated by Django 5.2.3 on 2025-11-09 19:08 from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('appointments', '0002_initial'), ] operations = [ migrations.AddField( model_name='appointment', name='no_show_notes', field=models.TextField(blank=True, help_text='Additional details about the no-show', verbose_name='No-Show Notes'), ), migrations.AddField( model_name='appointment', name='no_show_reason', field=models.CharField(blank=True, choices=[('PATIENT_FORGOT', 'Patient Forgot'), ('PATIENT_SICK', 'Patient Sick'), ('TRANSPORTATION', 'Transportation Issue'), ('EMERGENCY', 'Emergency'), ('NO_CONTACT', 'Could Not Contact'), ('LATE_CANCELLATION', 'Late Cancellation'), ('OTHER', 'Other')], max_length=30, verbose_name='No-Show Reason'), ), migrations.AddField( model_name='historicalappointment', name='no_show_notes', field=models.TextField(blank=True, help_text='Additional details about the no-show', verbose_name='No-Show Notes'), ), migrations.AddField( model_name='historicalappointment', name='no_show_reason', field=models.CharField(blank=True, choices=[('PATIENT_FORGOT', 'Patient Forgot'), ('PATIENT_SICK', 'Patient Sick'), ('TRANSPORTATION', 'Transportation Issue'), ('EMERGENCY', 'Emergency'), ('NO_CONTACT', 'Could Not Contact'), ('LATE_CANCELLATION', 'Late Cancellation'), ('OTHER', 'Other')], max_length=30, verbose_name='No-Show Reason'), ), ]