# Generated by Django 4.0.2 on 2025-03-28 07:57

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('wallet', '0004_alter_payoutrequest_payment_method'),
    ]

    operations = [
        migrations.RenameField(
            model_name='wallettransaction',
            old_name='amount_withdraw',
            new_name='is_withdraw',
        ),
        migrations.AddField(
            model_name='payoutrequest',
            name='wallet_ids',
            field=models.JSONField(blank=True, default=list, null=True),
        ),
    ]
