diff options
| author | Florian Apolloner <apollo13@users.noreply.github.com> | 2017-05-10 17:33:46 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-05-10 17:33:46 +0200 |
| commit | d611a89238b0fe69ccb8a0e7bf20672015357128 (patch) | |
| tree | dc59b34e51f7e93a42f63ea6b947e575c6f8a0ea /tests/model_inheritance_regress/models.py | |
| parent | 60f51290766dae16abfb60459940de51fa5c5b2f (diff) | |
Decreased max_length for char fields unless absolutely needed. (#8485)
Diffstat (limited to 'tests/model_inheritance_regress/models.py')
| -rw-r--r-- | tests/model_inheritance_regress/models.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/model_inheritance_regress/models.py b/tests/model_inheritance_regress/models.py index 358217554b..5e4c928dc9 100644 --- a/tests/model_inheritance_regress/models.py +++ b/tests/model_inheritance_regress/models.py @@ -193,7 +193,7 @@ class MessyBachelorParty(BachelorParty): # Check concrete -> abstract -> concrete inheritance class SearchableLocation(models.Model): - keywords = models.CharField(max_length=256) + keywords = models.CharField(max_length=255) class Station(SearchableLocation): |
