1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Rename SSID model to WirelessLAN

This commit is contained in:
jeremystretch
2021-10-12 17:02:53 -04:00
parent 38f6d22d2d
commit 5271680483
24 changed files with 119 additions and 126 deletions

View File

@@ -4,7 +4,7 @@ from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('wireless', '__first__'),
('wireless', '0001_initial'),
('dcim', '0135_location_tenant'),
]
@@ -21,7 +21,7 @@ class Migration(migrations.Migration):
),
migrations.AddField(
model_name='interface',
name='ssids',
field=models.ManyToManyField(blank=True, related_name='interfaces', to='wireless.SSID'),
name='wireless_lans',
field=models.ManyToManyField(blank=True, related_name='interfaces', to='wireless.WirelessLAN'),
),
]