|
|
@@ -0,0 +1,19 @@
|
|
|
+# 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'),
|
|
|
+ ),
|
|
|
+ ]
|