Fix stable migration dependencies for NetBox 4.6
This commit is contained in:
@@ -5,10 +5,11 @@ class VMwareImporterConfig(PluginConfig):
|
||||
name = "netbox_vmware_importer"
|
||||
verbose_name = "VMware Importer"
|
||||
description = "Synchronize VMware vSphere virtual machines into NetBox."
|
||||
version = "0.3.0"
|
||||
version = "0.3.1"
|
||||
author = "Internal NetBox Team"
|
||||
base_url = "vmware-importer"
|
||||
min_version = "4.4.0"
|
||||
min_version = "4.6.5"
|
||||
max_version = "4.6.8"
|
||||
|
||||
def ready(self):
|
||||
super().ready()
|
||||
|
||||
@@ -7,9 +7,9 @@ class Migration(migrations.Migration):
|
||||
initial = True
|
||||
|
||||
dependencies = [
|
||||
("dcim", "__latest__"),
|
||||
("tenancy", "__latest__"),
|
||||
("virtualization", "__latest__"),
|
||||
("dcim", "0001_squashed"),
|
||||
("tenancy", "0001_squashed_0012"),
|
||||
("virtualization", "0001_squashed_0022"),
|
||||
]
|
||||
|
||||
operations = [
|
||||
|
||||
@@ -5,7 +5,7 @@ from django.db import migrations, models
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
dependencies = [
|
||||
("extras", "__latest__"),
|
||||
("extras", "0001_squashed"),
|
||||
("netbox_vmware_importer", "0001_initial"),
|
||||
]
|
||||
|
||||
|
||||
Reference in New Issue
Block a user