# Generated by Django 4.2.7 on 2023-11-27 04:33

from django.db import migrations, models
import django.db.models.deletion


class Migration(migrations.Migration):

    dependencies = [
        ('user_panel', '0005_customernotifications'),
        ('admin_panel', '0016_user_is_profile_completed'),
    ]

    operations = [
        migrations.CreateModel(
            name='AdminRefundRequest',
            fields=[
                ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
                ('refund_amount', models.IntegerField(max_length=100, null=True)),
                ('cancellation_charges', models.CharField(max_length=100, null=True)),
                ('status', models.CharField(default='Pending', max_length=100)),
                ('date_processed', models.DateTimeField(null=True)),
                ('created_at', models.DateTimeField(auto_now_add=True)),
                ('updated_at', models.DateTimeField(auto_now=True)),
                ('end_date', models.DateTimeField(null=True)),
                ('booking', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='user_panel.userbookings')),
            ],
            options={
                'db_table': 'admin_refund_request',
            },
        ),
    ]
