Add 'stored_location_url' to SoftwareLicense (#28)

Closes #27
This commit is contained in:
wkoot
2023-09-22 02:42:02 +02:00
committed by GitHub
parent aa41f8a402
commit 2501e41b7c
5 changed files with 60 additions and 15 deletions
@@ -0,0 +1,19 @@
# Generated by Django 4.2.5 on 2023-09-22 00:34
from django.db import migrations
import netbox_slm.models
class Migration(migrations.Migration):
dependencies = [
('netbox_slm', '0005_add_software_license'),
]
operations = [
migrations.AddField(
model_name='softwarelicense',
name='stored_location_url',
field=netbox_slm.models.LaxURLField(blank=True, max_length=1024, null=True),
),
]