From d611a89238b0fe69ccb8a0e7bf20672015357128 Mon Sep 17 00:00:00 2001 From: Florian Apolloner Date: Wed, 10 May 2017 17:33:46 +0200 Subject: Decreased max_length for char fields unless absolutely needed. (#8485) --- tests/model_fields/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/model_fields') 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): -- cgit v1.3