mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
Add WirelessLink model
This commit is contained in:
@@ -1,10 +1,11 @@
|
||||
# Generated by Django 3.2.8 on 2021-10-13 13:44
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('wireless', '0001_initial'),
|
||||
('dcim', '0135_location_tenant'),
|
||||
]
|
||||
|
||||
@@ -19,9 +20,4 @@ class Migration(migrations.Migration):
|
||||
name='rf_channel_width',
|
||||
field=models.PositiveSmallIntegerField(blank=True, null=True),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='interface',
|
||||
name='wireless_lans',
|
||||
field=models.ManyToManyField(blank=True, related_name='interfaces', to='wireless.WirelessLAN'),
|
||||
),
|
||||
]
|
||||
|
19
netbox/dcim/migrations/0137_wireless.py
Normal file
19
netbox/dcim/migrations/0137_wireless.py
Normal file
@@ -0,0 +1,19 @@
|
||||
# Generated by Django 3.2.8 on 2021-10-13 13:44
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('dcim', '0136_wireless'),
|
||||
('wireless', '0001_wireless'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='interface',
|
||||
name='wireless_lans',
|
||||
field=models.ManyToManyField(blank=True, related_name='interfaces', to='wireless.WirelessLAN'),
|
||||
),
|
||||
]
|
Reference in New Issue
Block a user