aboutsummaryrefslogtreecommitdiffstats
path: root/docs/api-guide/fields.md
diff options
context:
space:
mode:
authorStephan Groß2013-04-15 12:40:18 +0200
committerStephan Groß2013-04-15 13:02:18 +0200
commitad436d966fa9ee2f5817aa5c26612c82558c4262 (patch)
tree6630c59aed9f5fa523171632156713b00d237ea2 /docs/api-guide/fields.md
parent0c1b8b4f767bddb30e0df2f5411cc4798d403de7 (diff)
downloaddjango-rest-framework-ad436d966fa9ee2f5817aa5c26612c82558c4262.tar.bz2
Add DecimalField support
Diffstat (limited to 'docs/api-guide/fields.md')
-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.