From 164fd2b4e3fc8c9fc301c46c8db0852ad9694ab9 Mon Sep 17 00:00:00 2001 From: emorino Date: Wed, 18 Aug 2021 17:31:29 +0200 Subject: [PATCH] =?UTF-8?q?Fix=20typo=20requ=C3=AAte=20SQL?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- HowtoPostgreSQL.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/HowtoPostgreSQL.md b/HowtoPostgreSQL.md index 12d31562..033f7a17 100644 --- a/HowtoPostgreSQL.md +++ b/HowtoPostgreSQL.md @@ -1385,17 +1385,17 @@ Ensuite il faut faire un `CREATE EXTENTION` dans la base de données ou l'on veu **ATTENTION** : il ne faut **PAS** créer l'extention dans la base de donnée nommée `postgres` ~~~ -foo=# CREATE EXTENTION postgis; +foo=# CREATE EXTENSION postgis; ~~~ Pour activé le support de rasterisation : ~~~ -foo=# CREATE EXTENTION postgis_raster; +foo=# CREATE EXTENSION postgis_raster; ~~~ Activé topology : ~~~ -foo=# CREATE EXTENTION postgis_topology; +foo=# CREATE EXTENSION postgis_topology; ~~~ \ No newline at end of file