Add has_a_pending_payment field to Device model and update related views for payment handling
All checks were successful
Build and Push Docker Images / Build and Push Docker Images (push) Successful in 2m38s

This commit is contained in:
2025-04-07 22:24:52 +05:00
parent c127c5d093
commit c3abdd8e34
5 changed files with 46 additions and 23 deletions

View File

@ -0,0 +1,17 @@
# Generated by Django 5.2 on 2025-04-07 17:11
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("devices", "0004_alter_device_id"),
]
operations = [
migrations.AddField(
model_name="device",
name="has_a_pending_payment",
field=models.BooleanField(default=False),
),
]