# Generated by Django 5.2.1 on 2025-05-27 17:41

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('vacations', '0012_employeeprofile_logo_file'),
    ]

    operations = [
        migrations.AddField(
            model_name='vacationrequest',
            name='cancellation_date',
            field=models.DateTimeField(blank=True, null=True),
        ),
        migrations.AddField(
            model_name='vacationrequest',
            name='cancellation_reason',
            field=models.TextField(blank=True, null=True),
        ),
    ]
