Add cartodb to the search path

See
https://github.com/CartoDB/dataservices-api/issues/324#issuecomment-269614566
This commit is contained in:
Rafa de la Torre 2016-12-29 12:10:56 +01:00
parent 629555e193
commit 9791a5bada
5 changed files with 5 additions and 5 deletions

View File

@ -3,7 +3,7 @@
\echo Use "ALTER EXTENSION cdb_dataservices_client UPDATE TO '0.14.1'" to load this file. \quit
-- Make sure we have a sane search path to create/update the extension
SET search_path = "$user",public,cdb_dataservices_client;
SET search_path = "$user",cartodb,public,cdb_dataservices_client;
-- This release introduces no changes other than the use of
-- search path in the install and migration scripts

View File

@ -3,7 +3,7 @@
\echo Use "ALTER EXTENSION cdb_dataservices_client UPDATE TO '0.14.0'" to load this file. \quit
-- Make sure we have a sane search path to create/update the extension
SET search_path = "$user",public,cdb_dataservices_client;
SET search_path = "$user",cartodb,public,cdb_dataservices_client;
-- This release introduces no changes other than the use of
-- search path in the install and migration scripts

View File

@ -3,7 +3,7 @@
\echo Use "CREATE EXTENSION cdb_dataservices_client" to load this file. \quit
-- Make sure we have a sane search path to create/update the extension
SET search_path = "$user",public,cdb_dataservices_client;
SET search_path = "$user",cartodb,public,cdb_dataservices_client;
--
-- Geocoder server connection config
--

View File

@ -3,4 +3,4 @@
\echo Use "CREATE EXTENSION cdb_dataservices_client" to load this file. \quit
-- Make sure we have a sane search path to create/update the extension
SET search_path = "$user",public,cdb_dataservices_client;
SET search_path = "$user",cartodb,public,cdb_dataservices_client;

View File

@ -3,6 +3,6 @@
\echo Use "ALTER EXTENSION cdb_dataservices_client UPDATE TO '<%= version %>'" to load this file. \quit
-- Make sure we have a sane search path to create/update the extension
SET search_path = "$user",public,cdb_dataservices_client;
SET search_path = "$user",cartodb,public,cdb_dataservices_client;
-- HERE goes your code to upgrade/downgrade