refactor: add src_bank attribute to Payment and Topup model 🔨
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
# Generated by Django 5.2 on 2025-09-20 16:02
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
dependencies = [
|
||||
("billing", "0015_topup_payment_type"),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name="payment",
|
||||
name="source_bank",
|
||||
field=models.CharField(blank=True, default="", null=True),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name="topup",
|
||||
name="source_bank",
|
||||
field=models.CharField(blank=True, default="", null=True),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user