summaryrefslogtreecommitdiff
path: root/docs/topics
diff options
context:
space:
mode:
authorBecka R <rebecca@rebecca-robbins.com>2016-02-11 11:27:15 -0800
committerTim Graham <timograham@gmail.com>2016-02-11 18:26:46 -0500
commitcf48962b361b573e580b79839c19b640b7f304a2 (patch)
tree615e9eecade8b0b5d7468a1839c4bc6bdaa8d78c /docs/topics
parent16a88b4429eb237cf3f7df6526c072efb72dbed1 (diff)
Clarified "database column type" explanation.
Diffstat (limited to 'docs/topics')
-rw-r--r--docs/topics/db/models.txt3
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/topics/db/models.txt b/docs/topics/db/models.txt
index 261ce14f44..99240dc65a 100644
--- a/docs/topics/db/models.txt
+++ b/docs/topics/db/models.txt
@@ -111,7 +111,8 @@ Each field in your model should be an instance of the appropriate
:class:`~django.db.models.Field` class. Django uses the field class types to
determine a few things:
-* The database column type (e.g. ``INTEGER``, ``VARCHAR``).
+* The column type, which tells the database what kind of data to store (e.g.
+ ``INTEGER``, ``VARCHAR``, ``TEXT``).
* The default HTML :doc:`widget </ref/forms/widgets>` to use when rendering a form
field (e.g. ``<input type="text">``, ``<select>``).