mirror of
https://github.com/netbox-community/netbox.git
synced 2026-04-20 16:01:34 +02:00
24 lines
606 B
Python
24 lines
606 B
Python
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('dcim', '0229_devicebay_modulebay_enabled'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='interface',
|
|
name='rf_channel_frequency',
|
|
field=models.DecimalField(
|
|
blank=True,
|
|
decimal_places=3,
|
|
help_text='Populated by selected channel (if set)',
|
|
max_digits=8,
|
|
null=True,
|
|
verbose_name='channel frequency (MHz)',
|
|
),
|
|
),
|
|
]
|