# Generated by Django 4.0.10 on 2024-06-14 19:36

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('zeeprimeapp', '0022_alter_adminwalletaddress_wallet_type_and_more'),
    ]

    operations = [
        migrations.AddField(
            model_name='deposittransaction',
            name='add_bonus',
            field=models.DecimalField(blank=True, decimal_places=2, default=0.0, help_text="Enter the amount you want to credit the user as a bonus. Note that this bonus will be accumulating with the person's deposited amount.", max_digits=10, null=True),
        ),
        migrations.AlterField(
            model_name='deposittransaction',
            name='amount_to_add',
            field=models.DecimalField(blank=True, decimal_places=2, default=0.0, help_text='Enter the amount the user deposited.', max_digits=10, null=True),
        ),
    ]
