[open-ils-commits] [GIT] Evergreen ILS branch rel_3_1 updated. 132669daa4f43736ae150e17a13726fa891d59d1

Evergreen Git git at git.evergreen-ils.org
Fri Jun 29 12:43:19 EDT 2018


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Evergreen ILS".

The branch, rel_3_1 has been updated
       via  132669daa4f43736ae150e17a13726fa891d59d1 (commit)
      from  e20829ae405505a906a43527902220221b813393 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 132669daa4f43736ae150e17a13726fa891d59d1
Author: Dan Wells <dbw2 at calvin.edu>
Date:   Fri Jun 29 12:42:05 2018 -0400

    Forward-port 3.1.3 upgrade script
    
    Signed-off-by: Dan Wells <dbw2 at calvin.edu>

diff --git a/Open-ILS/src/sql/Pg/version-upgrade/3.1.2-3.1.3-upgrade-db.sql b/Open-ILS/src/sql/Pg/version-upgrade/3.1.2-3.1.3-upgrade-db.sql
new file mode 100644
index 0000000..9714101
--- /dev/null
+++ b/Open-ILS/src/sql/Pg/version-upgrade/3.1.2-3.1.3-upgrade-db.sql
@@ -0,0 +1,15 @@
+--Upgrade Script for 3.1.2 to 3.1.3
+\set eg_version '''3.1.3'''
+BEGIN;
+INSERT INTO config.upgrade_log (version, applied_to) VALUES ('3.1.3', :eg_version);
+
+SELECT evergreen.upgrade_deps_block_check('1112', :eg_version);
+
+-- Add an index to action.usr_circ_history (source_circ) to speed up aging circs and purging accounts
+
+CREATE INDEX action_usr_circ_history_source_circ_idx 
+  ON action.usr_circ_history
+  USING btree
+  (source_circ);
+
+COMMIT;

-----------------------------------------------------------------------

Summary of changes:
 .../3.1.2-3.1.3-upgrade-db.sql}                    |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)
 copy Open-ILS/src/sql/Pg/{upgrade/1112.schema.auch-source_circ-index.sql => version-upgrade/3.1.2-3.1.3-upgrade-db.sql} (66%)


hooks/post-receive
-- 
Evergreen ILS


More information about the open-ils-commits mailing list