You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

26 lines
753 B

# 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",
),
),
]