summaryrefslogtreecommitdiff
path: root/tests/model_fields
diff options
context:
space:
mode:
authorFlorian Apolloner <apollo13@users.noreply.github.com>2017-05-10 17:33:46 +0200
committerGitHub <noreply@github.com>2017-05-10 17:33:46 +0200
commitd611a89238b0fe69ccb8a0e7bf20672015357128 (patch)
treedc59b34e51f7e93a42f63ea6b947e575c6f8a0ea /tests/model_fields
parent60f51290766dae16abfb60459940de51fa5c5b2f (diff)
Decreased max_length for char fields unless absolutely needed. (#8485)
Diffstat (limited to 'tests/model_fields')
-rw-r--r--tests/model_fields/models.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/model_fields/models.py b/tests/model_fields/models.py
index f6e94a841e..2208a8d4b8 100644
--- a/tests/model_fields/models.py
+++ b/tests/model_fields/models.py
@@ -74,7 +74,7 @@ class WhizIterEmpty(models.Model):
class BigD(models.Model):
- d = models.DecimalField(max_digits=38, decimal_places=30)
+ d = models.DecimalField(max_digits=32, decimal_places=30)
class FloatModel(models.Model):