mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
Enable attachment of wireless interfaces to SSIDs
This commit is contained in:
@ -4,6 +4,7 @@ from django.db import migrations, models
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('wireless', '__first__'),
|
||||
('dcim', '0135_location_tenant'),
|
||||
]
|
||||
|
||||
@ -18,4 +19,9 @@ class Migration(migrations.Migration):
|
||||
name='rf_channel_width',
|
||||
field=models.PositiveSmallIntegerField(blank=True, null=True),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='interface',
|
||||
name='ssids',
|
||||
field=models.ManyToManyField(blank=True, related_name='interfaces', to='wireless.SSID'),
|
||||
),
|
||||
]
|
||||
|
Reference in New Issue
Block a user