2021-10-12 10:46:41 -04:00
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
|
|
|
|
dependencies = [
|
2021-10-12 13:48:06 -04:00
|
|
|
('wireless', '__first__'),
|
2021-10-12 10:46:41 -04:00
|
|
|
('dcim', '0135_location_tenant'),
|
|
|
|
]
|
|
|
|
|
|
|
|
operations = [
|
|
|
|
migrations.AddField(
|
|
|
|
model_name='interface',
|
|
|
|
name='rf_channel',
|
|
|
|
field=models.CharField(blank=True, max_length=50),
|
|
|
|
),
|
|
|
|
migrations.AddField(
|
|
|
|
model_name='interface',
|
|
|
|
name='rf_channel_width',
|
|
|
|
field=models.PositiveSmallIntegerField(blank=True, null=True),
|
|
|
|
),
|
2021-10-12 13:48:06 -04:00
|
|
|
migrations.AddField(
|
|
|
|
model_name='interface',
|
|
|
|
name='ssids',
|
|
|
|
field=models.ManyToManyField(blank=True, related_name='interfaces', to='wireless.SSID'),
|
|
|
|
),
|
2021-10-12 10:46:41 -04:00
|
|
|
]
|