mirror of
https://github.com/i701/sarlink-portal-api.git
synced 2025-04-20 05:56:52 +00:00
All checks were successful
Build and Push Docker Images / Build and Push Docker Images (push) Successful in 2m38s
18 lines
396 B
Python
18 lines
396 B
Python
# 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),
|
|
),
|
|
]
|