diff options
| author | Tim Graham <timograham@gmail.com> | 2015-05-31 06:23:39 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2015-05-31 06:24:36 -0400 |
| commit | b8dce1af3a04ae547320d03a02919dd1172e295c (patch) | |
| tree | d577a0da24b40a8aea3b8f3297ce2688fe31f89b /docs | |
| parent | 2456276b0250c9f21d580ca6c3f3c86345ad6370 (diff) | |
[1.8.x] Refs #24811 -- Fixed syntax error in CREATE EXTENSION example query.
Backport of c954931abd17f8efaa6b7662ac2916dbf47d2978 from master
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/ref/contrib/postgres/fields.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ref/contrib/postgres/fields.txt b/docs/ref/contrib/postgres/fields.txt index 235dbc9079..3d36018893 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. |
