From 1fd06ff65d32728b585a70b3f7c79cb2117a0612 Mon Sep 17 00:00:00 2001 From: steve-chavez Date: Thu, 1 Aug 2019 14:10:02 -0500 Subject: [PATCH] Fix #199, db-extra-search-path clarification --- install.rst | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/install.rst b/install.rst index 807b87c78..7f6e59676 100644 --- a/install.rst +++ b/install.rst @@ -129,7 +129,9 @@ db-pool db-extra-search-path -------------------- - Extra schemas to add to the `search_path `_ of every request. These schemas tables, views and stored procedures don't get API endpoints, they can only be referred from the database objects exposed in your :ref:`db-schema`. + Extra schemas to add to the `search_path `_ of every request. These schemas tables, views and stored procedures **don't get API endpoints**, they can only be referred from the database objects inside your :ref:`db-schema`. + + This parameter was meant to make it easier to use **PostgreSQL extensions** (like PostGIS) that are outside of the :ref:`db-schema`. Multiple schemas can be added in a comma-separated string, e.g. ``public, extensions``.