From: Chris Sharp Date: Fri, 28 Oct 2011 11:57:31 +0000 (-0400) Subject: adding a script to run between the upgrade scripts X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=fa0d62a81d9d1b334843bab5763603fbdf00c0aa;p=evergreen%2Fpines.git adding a script to run between the upgrade scripts --- diff --git a/Open-ILS/src/sql/Pg/post-2.0-pre-2.1-tasks.sql b/Open-ILS/src/sql/Pg/post-2.0-pre-2.1-tasks.sql new file mode 100644 index 0000000000..fe827a340d --- /dev/null +++ b/Open-ILS/src/sql/Pg/post-2.0-pre-2.1-tasks.sql @@ -0,0 +1,7 @@ +-- the 2.0 to 2.1 upgrade script requires that the search path for functions is updated +-- the script tries to do this itself, but something is not working. +-- see https://bugs.launchpad.net/evergreen/+bug/881774 for more information + +ALTER DATABASE evergreen SET search_path=evergreen, public, pg_catalog; + +