feat(topup): add expiry notification handling and SMS notification task

This commit is contained in:
2025-07-05 14:33:10 +05:00
parent 6fb70e82a3
commit 6ec31023c7
3 changed files with 77 additions and 0 deletions

View File

@ -0,0 +1,17 @@
# Generated by Django 5.2 on 2025-07-05 09:26
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("billing", "0009_remove_topup_expired"),
]
operations = [
migrations.AddField(
model_name="topup",
name="expiry_notification_sent",
field=models.BooleanField(default=False),
),
]