Standardize existing description fields to a length of 200 chars

This commit is contained in:
Jeremy Stretch
2020-03-13 15:49:58 -04:00
parent 78d3dafb2e
commit 16bbdf7896
8 changed files with 21 additions and 22 deletions

View File

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