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 f108049142
commit 3b4ec5926d
8 changed files with 21 additions and 22 deletions

View File

@@ -86,9 +86,8 @@ class Tenant(ChangeLoggedModel, CustomFieldModel):
null=True
)
description = models.CharField(
max_length=100,
blank=True,
help_text='Long-form name (optional)'
max_length=200,
blank=True
)
comments = models.TextField(
blank=True