1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00
Files
netbox-community-netbox/netbox/dcim/migrations/0136_wireless.py

27 lines
703 B
Python
Raw Normal View History

2021-10-12 10:46:41 -04:00
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('dcim', '0135_location_tenant'),
]
operations = [
2021-10-13 20:16:36 -04:00
migrations.AddField(
model_name='interface',
name='rf_role',
field=models.CharField(blank=True, max_length=30),
),
2021-10-12 10:46:41 -04:00
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),
),
]