[open-ils-commits] [GIT] Evergreen ILS branch master updated. fde814620213488dd5376cfaf5f09a3787ae5192
Evergreen Git
git at git.evergreen-ils.org
Fri Jun 29 12:42:50 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, master has been updated
via fde814620213488dd5376cfaf5f09a3787ae5192 (commit)
via dfc9a81480c8c5f792b5e63cd6f84c77de88eeb7 (commit)
from db2aecd8e095dbe3ee85ec141d7a05b6c4b52b1c (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 fde814620213488dd5376cfaf5f09a3787ae5192
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;
commit dfc9a81480c8c5f792b5e63cd6f84c77de88eeb7
Author: Dan Wells <dbw2 at calvin.edu>
Date: Fri Jun 29 12:41:26 2018 -0400
Forward port 3.0.9 upgrade script
Signed-off-by: Dan Wells <dbw2 at calvin.edu>
diff --git a/Open-ILS/src/sql/Pg/version-upgrade/3.0.8-3.0.9-upgrade-db.sql b/Open-ILS/src/sql/Pg/version-upgrade/3.0.8-3.0.9-upgrade-db.sql
new file mode 100644
index 0000000..2d4c6d6
--- /dev/null
+++ b/Open-ILS/src/sql/Pg/version-upgrade/3.0.8-3.0.9-upgrade-db.sql
@@ -0,0 +1,15 @@
+--Upgrade Script for 3.0.8 to 3.0.9
+\set eg_version '''3.0.9'''
+BEGIN;
+INSERT INTO config.upgrade_log (version, applied_to) VALUES ('3.0.9', :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.0.8-3.0.9-upgrade-db.sql} | 3 +++
.../3.1.2-3.1.3-upgrade-db.sql} | 3 +++
2 files changed, 6 insertions(+), 0 deletions(-)
copy Open-ILS/src/sql/Pg/{upgrade/1112.schema.auch-source_circ-index.sql => version-upgrade/3.0.8-3.0.9-upgrade-db.sql} (66%)
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