mirror of
https://github.com/i701/sarlink-portal-api.git
synced 2025-07-07 12:16:30 +00:00
26 lines
640 B
Python
26 lines
640 B
Python
# Generated by Django 5.2 on 2025-07-05 12:32
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
("billing", "0010_add_expiry_notification_sent_to_topup"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="topup",
|
|
name="status",
|
|
field=models.CharField(
|
|
choices=[
|
|
("PENDING", "Pending"),
|
|
("PAID", "Paid"),
|
|
("CANCELLED", "Cancelled"),
|
|
],
|
|
default="PENDING",
|
|
max_length=20,
|
|
),
|
|
),
|
|
]
|