mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-14 01:41:22 -06:00
20 lines
561 B
Python
20 lines
561 B
Python
# Generated by Django 2.0.8 on 2018-08-22 14:23
|
|
|
|
import django.core.validators
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('dcim', '0061_platform_napalm_args'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='interface',
|
|
name='mtu',
|
|
field=models.PositiveIntegerField(blank=True, null=True, validators=[django.core.validators.MinValueValidator(1), django.core.validators.MaxValueValidator(65536)], verbose_name='MTU'),
|
|
),
|
|
]
|