# Generated by Django 5.1.4 on 2025-01-03 11:28

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('finance_and_accounting', '0001_initial'),
    ]

    operations = [
        migrations.AlterField(
            model_name='journalaccountdebit',
            name='account_name',
            field=models.CharField(choices=[('cash', 'Cash'), ('m_pesa', 'M-PESA PAYBILL'), ('bank', 'Bank'), ('accounts_receivable', 'Accounts Receivable'), ('inventory', 'Inventory'), ('loans_receivable', 'Loans Receivable'), ('loans_payable', 'Loans Payable'), ('rent_expense', 'Rent Expense'), ('operations_expense', 'Operations Expense'), ('refund_expense', 'Refund Expense'), ('fixed_assets', 'Fixed Assets'), ('accumulated_depreciation', 'Accumulated Depreciation'), ('salary_and_wages_expense', 'Salary and Wages Expense'), ('utility_expense', 'Utility Expense'), ('marketing_expense', 'Marketing Expense'), ('transportation_expense', 'Transportation Expense'), ('office_supply_expense', 'Office Supply Expense'), ('insurance_expense', 'Insurance Expense'), ('interest_expense', 'Interest Expense'), ('tax_and_license_expense', 'Tax and License Expense'), ('miscellaneous_expense', 'Miscellaneous Expense'), ('not_selected', 'Not Selected'), ('retained_earnings', 'Retained Earnings')], default='not_selected', max_length=105, unique=True),
        ),
    ]
