
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_14 has been updated via aea75ebe8dbf42caa46397b1a357bac18ce2f578 (commit) from 5c285eb0a39372dbb00b5c6dc83b5d53a35711d6 (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 aea75ebe8dbf42caa46397b1a357bac18ce2f578 Author: blake <blake@mobiusconsortium.org> Date: Wed May 21 14:07:56 2025 -0500 Port forward 3.13 and 3.14 db upgrade scripts Signed-off-by: blake <blake@mobiusconsortium.org> diff --git a/Open-ILS/src/sql/Pg/version-upgrade/3.13.10-3.13.11-upgrade-db.sql b/Open-ILS/src/sql/Pg/version-upgrade/3.13.10-3.13.11-upgrade-db.sql new file mode 100644 index 0000000000..e34457f5f1 --- /dev/null +++ b/Open-ILS/src/sql/Pg/version-upgrade/3.13.10-3.13.11-upgrade-db.sql @@ -0,0 +1,9 @@ +--Upgrade Script for 3.13.10 to 3.13.11 +\set eg_version '''3.13.11''' +BEGIN; +INSERT INTO config.upgrade_log (version, applied_to) VALUES ('3.13.11', :eg_version); +COMMIT; + +-- Update auditor tables to catch changes to source tables. +-- Can be removed/skipped if there were no schema changes. +SELECT auditor.update_auditors(); diff --git a/Open-ILS/src/sql/Pg/version-upgrade/3.14.5-3.14.6-upgrade-db.sql b/Open-ILS/src/sql/Pg/version-upgrade/3.14.5-3.14.6-upgrade-db.sql new file mode 100644 index 0000000000..df954e640f --- /dev/null +++ b/Open-ILS/src/sql/Pg/version-upgrade/3.14.5-3.14.6-upgrade-db.sql @@ -0,0 +1,9 @@ +--Upgrade Script for 3.14.5 to 3.14.6 +\set eg_version '''3.14.6''' +BEGIN; +INSERT INTO config.upgrade_log (version, applied_to) VALUES ('3.14.6', :eg_version); +COMMIT; + +-- Update auditor tables to catch changes to source tables. +-- Can be removed/skipped if there were no schema changes. +SELECT auditor.update_auditors(); ----------------------------------------------------------------------- Summary of changes: ...{3.12.5-3.12.6-upgrade-db.sql => 3.13.10-3.13.11-upgrade-db.sql} | 6 +++--- .../{3.12.5-3.12.6-upgrade-db.sql => 3.14.5-3.14.6-upgrade-db.sql} | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) copy Open-ILS/src/sql/Pg/version-upgrade/{3.12.5-3.12.6-upgrade-db.sql => 3.13.10-3.13.11-upgrade-db.sql} (71%) copy Open-ILS/src/sql/Pg/version-upgrade/{3.12.5-3.12.6-upgrade-db.sql => 3.14.5-3.14.6-upgrade-db.sql} (72%) hooks/post-receive -- Evergreen ILS