From c954931abd17f8efaa6b7662ac2916dbf47d2978 Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Sun, 31 May 2015 06:23:39 -0400 Subject: [PATCH] Refs #24811 -- Fixed syntax error in CREATE EXTENSION example query. --- docs/ref/contrib/postgres/fields.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.