mirror of
https://github.com/i701/sarlink-portal-api.git
synced 2025-06-06 17:36:20 +00:00
All checks were successful
Build and Push Docker Images / Build and Push Docker Images (push) Successful in 4m18s
18 lines
415 B
Python
18 lines
415 B
Python
# Generated by Django 5.2 on 2025-06-01 13:17
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
("devices", "0006_alter_device_mac"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="device",
|
|
name="vendor",
|
|
field=models.CharField(blank=True, default="", max_length=255, null=True),
|
|
),
|
|
]
|