mirror of
https://github.com/netbox-community/netbox.git
synced 2025-12-19 03:42:25 -06:00
Standardize existing description fields to a length of 200 chars
This commit is contained in:
@@ -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(
|
||||
|
||||
Reference in New Issue
Block a user