From d1bd010e057af3cde79ad3fd64921d4ff28cbad1 Mon Sep 17 00:00:00 2001 From: Jeremy Stretch Date: Tue, 23 Jun 2020 12:50:22 -0400 Subject: [PATCH] Fix Interface tag replication in schema migration --- netbox/virtualization/migrations/0016_replicate_interfaces.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/netbox/virtualization/migrations/0016_replicate_interfaces.py b/netbox/virtualization/migrations/0016_replicate_interfaces.py index c259b4140..640e9b02f 100644 --- a/netbox/virtualization/migrations/0016_replicate_interfaces.py +++ b/netbox/virtualization/migrations/0016_replicate_interfaces.py @@ -5,7 +5,7 @@ from django.db import migrations def replicate_interfaces(apps, schema_editor): ContentType = apps.get_model('contenttypes', 'ContentType') - TaggedItem = apps.get_model('taggit', 'TaggedItem') + TaggedItem = apps.get_model('extras', 'TaggedItem') Interface = apps.get_model('dcim', 'Interface') IPAddress = apps.get_model('ipam', 'IPAddress') VMInterface = apps.get_model('virtualization', 'Interface')