mirror of
https://github.com/i701/sarlink-portal-api.git
synced 2025-10-13 00:11:37 +00:00
refactor: add src_bank attribute to Payment and Topup model 🔨
All checks were successful
Build and Push Docker Images / Build and Push Docker Images (push) Successful in 5m4s
All checks were successful
Build and Push Docker Images / Build and Push Docker Images (push) Successful in 5m4s
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