mirror of
https://github.com/i701/sarlink-portal-api.git
synced 2025-06-06 23:46:19 +00:00
All checks were successful
Build and Push Docker Images / Build and Push Docker Images (push) Successful in 4m18s
24 lines
567 B
Python
24 lines
567 B
Python
# Generated by Django 5.2 on 2025-06-01 14:15
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
("devices", "0007_device_vendor"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name="device",
|
|
name="blocked_by",
|
|
field=models.CharField(
|
|
blank=True,
|
|
choices=[("ADMIN", "Admin"), ("PARENT", "Parent")],
|
|
default=None,
|
|
max_length=255,
|
|
null=True,
|
|
),
|
|
),
|
|
]
|