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.
25 lines
720 B
25 lines
720 B
# Generated by Django 4.2.27 on 2025-12-28 11:31
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
("transaction", "0003_alter_transactionparticipant_status_and_more"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="transactionparticipant",
|
|
name="payment_method",
|
|
field=models.CharField(
|
|
choices=[
|
|
("receipt", "Receipt"),
|
|
("Payment_Gateway", "Payment Gateway"),
|
|
],
|
|
default="Payment_Gateway",
|
|
max_length=20,
|
|
verbose_name="Transaction Payment Method",
|
|
),
|
|
),
|
|
]
|