|
@@ -63,7 +63,7 @@ class VRF(ChangeLoggedModel, CustomFieldModel):
|
|
|
help_text='Prevent duplicate prefixes/IP addresses within this VRF'
|
|
help_text='Prevent duplicate prefixes/IP addresses within this VRF'
|
|
|
)
|
|
)
|
|
|
description = models.CharField(
|
|
description = models.CharField(
|
|
|
- max_length=100,
|
|
|
|
|
|
|
+ max_length=200,
|
|
|
blank=True
|
|
blank=True
|
|
|
)
|
|
)
|
|
|
custom_field_values = GenericRelation(
|
|
custom_field_values = GenericRelation(
|
|
@@ -162,7 +162,7 @@ class Aggregate(ChangeLoggedModel, CustomFieldModel):
|
|
|
null=True
|
|
null=True
|
|
|
)
|
|
)
|
|
|
description = models.CharField(
|
|
description = models.CharField(
|
|
|
- max_length=100,
|
|
|
|
|
|
|
+ max_length=200,
|
|
|
blank=True
|
|
blank=True
|
|
|
)
|
|
)
|
|
|
custom_field_values = GenericRelation(
|
|
custom_field_values = GenericRelation(
|
|
@@ -261,7 +261,7 @@ class Role(ChangeLoggedModel):
|
|
|
default=1000
|
|
default=1000
|
|
|
)
|
|
)
|
|
|
description = models.CharField(
|
|
description = models.CharField(
|
|
|
- max_length=100,
|
|
|
|
|
|
|
+ max_length=200,
|
|
|
blank=True,
|
|
blank=True,
|
|
|
)
|
|
)
|
|
|
|
|
|
|
@@ -342,7 +342,7 @@ class Prefix(ChangeLoggedModel, CustomFieldModel):
|
|
|
help_text='All IP addresses within this prefix are considered usable'
|
|
help_text='All IP addresses within this prefix are considered usable'
|
|
|
)
|
|
)
|
|
|
description = models.CharField(
|
|
description = models.CharField(
|
|
|
- max_length=100,
|
|
|
|
|
|
|
+ max_length=200,
|
|
|
blank=True
|
|
blank=True
|
|
|
)
|
|
)
|
|
|
custom_field_values = GenericRelation(
|
|
custom_field_values = GenericRelation(
|
|
@@ -612,7 +612,7 @@ class IPAddress(ChangeLoggedModel, CustomFieldModel):
|
|
|
help_text='Hostname or FQDN (not case-sensitive)'
|
|
help_text='Hostname or FQDN (not case-sensitive)'
|
|
|
)
|
|
)
|
|
|
description = models.CharField(
|
|
description = models.CharField(
|
|
|
- max_length=100,
|
|
|
|
|
|
|
+ max_length=200,
|
|
|
blank=True
|
|
blank=True
|
|
|
)
|
|
)
|
|
|
custom_field_values = GenericRelation(
|
|
custom_field_values = GenericRelation(
|
|
@@ -898,7 +898,7 @@ class VLAN(ChangeLoggedModel, CustomFieldModel):
|
|
|
null=True
|
|
null=True
|
|
|
)
|
|
)
|
|
|
description = models.CharField(
|
|
description = models.CharField(
|
|
|
- max_length=100,
|
|
|
|
|
|
|
+ max_length=200,
|
|
|
blank=True
|
|
blank=True
|
|
|
)
|
|
)
|
|
|
custom_field_values = GenericRelation(
|
|
custom_field_values = GenericRelation(
|
|
@@ -1010,7 +1010,7 @@ class Service(ChangeLoggedModel, CustomFieldModel):
|
|
|
verbose_name='IP addresses'
|
|
verbose_name='IP addresses'
|
|
|
)
|
|
)
|
|
|
description = models.CharField(
|
|
description = models.CharField(
|
|
|
- max_length=100,
|
|
|
|
|
|
|
+ max_length=200,
|
|
|
blank=True
|
|
blank=True
|
|
|
)
|
|
)
|
|
|
custom_field_values = GenericRelation(
|
|
custom_field_values = GenericRelation(
|