# Generated by Django 2.2.28 on 2025-08-08 08:38

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('userauth', '0012_messagewhatsapptemplate'),
    ]

    operations = [
        migrations.AlterField(
            model_name='messagetemplate',
            name='message_type',
            field=models.CharField(choices=[('patient_created', 'Patient Created'), ('doctor_created', 'Doctor Created'), ('Technician_created', 'Technician Created'), ('reservation_created', 'Reservation Created'), ('reservation_rejected_doctor', 'rejected service to Doctor'), ('reservation_rejected_technician', 'rejected service to Technician'), ('reservation_assigned_doctor', 'Assigned service to Doctor'), ('reservation_assigned_technician', 'Assigned service to Technician'), ('reservation_completed_service', 'Completed patient service'), ('reservation_payed_service', 'Payed patient service'), ('reservation_canceled_service', 'Canceled patient service'), ('patient_add_user', 'Add Patient'), ('doctor_add_user', 'Add Doctor'), ('technician_add_user', 'Add Technician'), ('patient_wallet', 'Change Patient Wallet'), ('patient_add_wallet', 'Add Patient Wallet'), ('doctor_add_wallet', 'Add Doctor Wallet'), ('technician_add_wallet', 'Add Technician Wallet'), ('doctor_wallet', 'Change Doctor Wallet'), ('technician_wallet', 'Change Technician Wallet'), ('patient_no_complete_service_before_2_day', 'Send message before 2 day for patient service'), ('patient_complete_service_after_1_month', 'Send message after 1 month for completed patient service'), ('patient_birth_date', 'Patient birth date'), ('daily_report', 'Send daily report'), ('monthly_report', 'Send monthly report'), ('patient_without_service_holidays', 'Patient without service in holidays'), ('patient_complete_service_after_6_month', 'Send message after 6 month for completed patient service'), ('patient_without_service', 'Patient without service'), ('patient_with_service', 'Patient with service'), ('patient_with_service_holidays', 'Patient with service in holidays')], max_length=50, unique=True, verbose_name='Message Type'),
        ),
        migrations.AlterField(
            model_name='user',
            name='access_level',
            field=models.CharField(choices=[('Administrator', 'Administrator'), ('Supervisor', 'Supervisor'), ('Accountant', 'Accountant'), ('Technician', 'Technician'), ('Doctor', 'Doctor'), ('Leader', 'Leader'), ('Store', 'Store'), ('Secretary', 'Secretary')], default='Supervisor', max_length=50, verbose_name='access level'),
        ),
    ]
