# Generated by Django 6.0.2 on 2026-03-04 09:50

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('payments', '0004_payment_method_alter_payment_paid_at_and_more'),
    ]

    operations = [
        migrations.AlterField(
            model_name='payment',
            name='method',
            field=models.CharField(choices=[('BANK', 'Bank Transfer'), ('CASH', 'Cash')], default='BANK', max_length=20),
        ),
    ]
