summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2015-05-31 06:23:39 -0400
committerTim Graham <timograham@gmail.com>2015-05-31 06:24:08 -0400
commitc954931abd17f8efaa6b7662ac2916dbf47d2978 (patch)
tree955fcb7a10983d6ceaab2a7584b607f0589ce6ad /docs
parentc7805ee214802ff1c0de53660bd2594bc1abfebb (diff)
Refs #24811 -- Fixed syntax error in CREATE EXTENSION example query.
Diffstat (limited to 'docs')
-rw-r--r--docs/ref/contrib/postgres/fields.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ref/contrib/postgres/fields.txt b/docs/ref/contrib/postgres/fields.txt
index cf92c294c9..4b934c97fd 100644
--- a/docs/ref/contrib/postgres/fields.txt
+++ b/docs/ref/contrib/postgres/fields.txt
@@ -274,7 +274,7 @@ HStoreField
privileges, you'll have to create the extension outside of Django
migrations with a user that has the appropriate privileges. In that
case, connect to your Django database and run the query
- ``CREATE EXTENSION IF NOT EXISTS 'hstore';``
+ ``CREATE EXTENSION IF NOT EXISTS hstore;``
You'll see an error like ``can't adapt type 'dict'`` if you skip the first
step, or ``type "hstore" does not exist`` if you skip the second.