# Generated by Django 3.2 on 2022-03-19 21:16

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('zeeprimeapp', '0003_remove_deposittransaction_withdrawn_balance'),
    ]

    operations = [
        migrations.AddField(
            model_name='deposittransaction',
            name='amount_to_withdraw',
            field=models.DecimalField(blank=True, decimal_places=2, default=0.0, help_text='Current Earning of the user. Please do not touch this field', max_digits=10, null=True),
        ),
    ]
