sarlink-portal-api/devices/migrations/0008_alter_device_blocked_by.py
i701 4db9d7fabd
All checks were successful
Build and Push Docker Images / Build and Push Docker Images (push) Successful in 4m18s
Refactor device management: add vendor field, enhance admin display, and improve MAC address handling
2025-06-01 19:27:04 +05:00

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,
),
),
]