# Generated by Django 4.2.27 on 2025-12-28 12:00 from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ("transaction", "0004_transactionparticipant_payment_method"), ] operations = [ migrations.AlterField( model_name="transactionparticipant", name="payment_method", field=models.CharField( choices=[ ("receipt", "Receipt"), ("free", "Free"), ("Payment_Gateway", "Payment Gateway"), ], default="Payment_Gateway", max_length=20, verbose_name="Transaction Payment Method", ), ), ]