mirror of
https://github.com/i701/sarlink-portal-api.git
synced 2025-07-12 15:25:48 +00:00
feat(payment): add expiry_notification_sent field to track notification status ✨
This commit is contained in:
17
billing/migrations/0013_payment_expiry_notification_sent.py
Normal file
17
billing/migrations/0013_payment_expiry_notification_sent.py
Normal file
@ -0,0 +1,17 @@
|
||||
# Generated by Django 5.2 on 2025-07-09 14:50
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
dependencies = [
|
||||
("billing", "0012_payment_status"),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name="payment",
|
||||
name="expiry_notification_sent",
|
||||
field=models.BooleanField(default=False),
|
||||
),
|
||||
]
|
Reference in New Issue
Block a user