From b8dce1af3a04ae547320d03a02919dd1172e295c Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Sun, 31 May 2015 06:23:39 -0400 Subject: [PATCH] [1.8.x] Refs #24811 -- Fixed syntax error in CREATE EXTENSION example query. Backport of c954931abd17f8efaa6b7662ac2916dbf47d2978 from master --- 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 235dbc90795..3d36018893b 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.