# Generated by Django 4.2.14 on 2024-08-10 13:04

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('appointments', '0007_alter_appointment_status'),
    ]

    operations = [
        migrations.AlterField(
            model_name='appointment',
            name='status',
            field=models.CharField(choices=[('En attente', 'En attente'), ('accepté', 'accepté'), ('rejeté', 'Rrejeté')], default='En attente', max_length=10),
        ),
    ]
