# Generated by Django 2.2.28 on 2025-07-13 15:11

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('userauth', '0008_passwordresetcode'),
    ]

    operations = [
        migrations.AddField(
            model_name='messagetemplate',
            name='service_id',
            field=models.IntegerField(blank=True, null=True),
        ),
        migrations.AddField(
            model_name='messagetemplate',
            name='service_name',
            field=models.CharField(blank=True, max_length=30, null=True),
        ),
        migrations.AlterField(
            model_name='messagetemplate',
            name='message_type',
            field=models.CharField(choices=[('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'), ('daily_report', 'Send daily report'), ('monthly_report', 'Send monthly report'), ('patient_wallet', 'Change Patient Wallet'), ('doctor_wallet', 'Change Doctor Wallet'), ('technician_wallet', 'Change Technician Wallet'), ('patient_complete_service_after_6_month', 'Send message after 6 month for completed patient service'), ('patient_complete_service_after_1_month', 'Send message after 1 month for completed patient service'), ('patient_no_complete_service_before_2_day', 'Send message before 2 day for patient service'), ('patient_birth_date', 'Patient birth date'), ('patient_without_service', 'Patient without service'), ('patient_with_service', 'Patient with service'), ('patient_without_service_holidays', 'Patient without service in holidays'), ('patient_with_service_holidays', 'Patient with service in holidays')], max_length=50, unique=True, verbose_name='Message Type'),
        ),
    ]
