# Generated by Django 4.1.7 on 2023-08-17 15:45

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('inventory', '0027_remove_cashaccount_currency_and_more'),
    ]

    operations = [
        migrations.AddField(
            model_name='payment_from_consumer',
            name='received_in',
            field=models.CharField(choices=[('C/H', 'CASH IN HAND'), ('C/B', 'CASH IN BANK')], default='C/H', max_length=3),
        ),
    ]
