[open-ils-commits] [GIT] Evergreen ILS branch rel_2_5 updated. 33fe69e9336d70fed77c244aabf94ffc208a1553

Evergreen Git git at git.evergreen-ils.org
Thu Mar 6 17:39:08 EST 2014


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_2_5 has been updated
       via  33fe69e9336d70fed77c244aabf94ffc208a1553 (commit)
      from  ec44ea09dba5bb3ef0617db4ab83e4fbae6d225a (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 33fe69e9336d70fed77c244aabf94ffc208a1553
Author: Dan Wells <dbw2 at calvin.edu>
Date:   Wed Mar 5 12:24:19 2014 -0500

    LP#1287510 Add missing column to upgrade script
    
    If you come via upgrade and not a fresh 2.5 DB, you are probably
    missing the action.aged_hold_request.behind_desk column.  Add it in a
    harmless way.
    
    Signed-off-by: Dan Wells <dbw2 at calvin.edu>
    Signed-off-by: Ben Shum <bshum at biblio.org>

diff --git a/Open-ILS/src/sql/Pg/upgrade/0868.schema.all_hold_behind_desk.sql b/Open-ILS/src/sql/Pg/upgrade/0868.schema.all_hold_behind_desk.sql
index 0a52719..cb463ad 100644
--- a/Open-ILS/src/sql/Pg/upgrade/0868.schema.all_hold_behind_desk.sql
+++ b/Open-ILS/src/sql/Pg/upgrade/0868.schema.all_hold_behind_desk.sql
@@ -1,5 +1,9 @@
 -- add missing behind_desk column
 
+\qecho *** This ALTER TABLE might fail depending on your DB vintage. ***
+\qecho *** It should be harmless. ***
+ALTER TABLE action.aged_hold_request ADD COLUMN behind_desk BOOLEAN;
+
 BEGIN;
 
 SELECT evergreen.upgrade_deps_block_check('0868', :eg_version);

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

Summary of changes:
 .../upgrade/0868.schema.all_hold_behind_desk.sql   |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)


hooks/post-receive
-- 
Evergreen ILS


More information about the open-ils-commits mailing list