# Generated by Django 5.2.4 on 2025-10-02 03:45

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('payments', '0023_alter_viralpewalletusage_order_id'),
    ]

    operations = [
        migrations.AlterField(
            model_name='paymenttransaction',
            name='service',
            field=models.CharField(choices=[('prepaid', 'Prepaid'), ('recharge', 'Recharge'), ('bbps', 'BBPS'), ('voucher', 'Voucher'), ('subscription', 'Subscription'), ('other', 'Other')], default='other', max_length=30),
        ),
    ]
