feat(billing): WIP Add Topup model, filters, serializers, and views for topup management

This commit is contained in:
2025-07-03 17:13:25 +05:00
parent bae0882879
commit c07d3c93d2
7 changed files with 172 additions and 7 deletions

View File

@ -0,0 +1,17 @@
# Generated by Django 5.2 on 2025-07-03 12:04
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("billing", "0006_topup_mib_reference"),
]
operations = [
migrations.AddField(
model_name="topup",
name="paid_at",
field=models.DateTimeField(blank=True, null=True),
),
]