revert stupid commit which wasn't a fix at all...

This commit is contained in:
Adrien 2016-10-24 15:50:10 +02:00
parent 68e080f84e
commit 2a9483d8d5

View File

@ -12,13 +12,7 @@ from rest_framework.compat import DecimalValidator
from rest_framework.validators import UniqueValidator from rest_framework.validators import UniqueValidator
NUMERIC_FIELD_TYPES = ( NUMERIC_FIELD_TYPES = (
models.BigIntegerField, models.IntegerField, models.FloatField, models.DecimalField
models.DecimalField,
models.FloatField,
models.IntegerField,
models.PositiveIntegerField,
models.PositiveSmallIntegerField,
models.SmallIntegerField,
) )