1
0
mirror of https://github.com/django/django.git synced 2025-10-23 21:59:11 +00:00

Decreased max_length for char fields unless absolutely needed. (#8485)

This commit is contained in:
Florian Apolloner
2017-05-10 17:33:46 +02:00
committed by GitHub
parent 60f5129076
commit d611a89238
7 changed files with 13 additions and 13 deletions

View File

@@ -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):