aboutsummaryrefslogtreecommitdiffstats
path: root/docs/api-guide
diff options
context:
space:
mode:
authorTom Christie2013-04-26 13:59:06 +0100
committerTom Christie2013-04-26 13:59:06 +0100
commitd985aec3c9034ab1aa899e914a5ac0baf314cb3c (patch)
tree4a6f47489a64114c2918947582c5d40b83160f99 /docs/api-guide
parent50c6bc5762460ebd2a79b61edd534d10cb58c7e5 (diff)
parentcac669702596cdf768971267e6355fb9223a69e8 (diff)
downloaddjango-rest-framework-d985aec3c9034ab1aa899e914a5ac0baf314cb3c.tar.bz2
DecimalField
Diffstat (limited to 'docs/api-guide')
-rw-r--r--docs/api-guide/fields.md6
1 files changed, 6 insertions, 0 deletions
diff --git a/docs/api-guide/fields.md b/docs/api-guide/fields.md
index 42f89f46..e117c370 100644
--- a/docs/api-guide/fields.md
+++ b/docs/api-guide/fields.md
@@ -248,6 +248,12 @@ A floating point representation.
Corresponds to `django.db.models.fields.FloatField`.
+## DecimalField
+
+A decimal representation.
+
+Corresponds to `django.db.models.fields.DecimalField`.
+
## FileField
A file representation. Performs Django's standard FileField validation.