[open-ils-commits] [GIT] Evergreen ILS branch master updated. 4bc4f9d59f0c58f177becaa0280656b55104a5f9

Evergreen Git git at git.evergreen-ils.org
Fri May 4 12:26:06 EDT 2012


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  4bc4f9d59f0c58f177becaa0280656b55104a5f9 (commit)
      from  a07412def15603dd2132477b5babd99982a2265d (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 4bc4f9d59f0c58f177becaa0280656b55104a5f9
Author: Lebbeous Fogle-Weekley <lebbeous at esilibrary.com>
Date:   Fri May 4 12:23:19 2012 -0400

    Add missing upgrade scripts 0705, 0707 to point-to-point upgrade script
    
    These come from bugfixes I pushed to master and rel_2_2 on 28 April 2012
    without remembering to address the point-to-point version upgrade script.
    
    See c208754eafadb005439800f7fedd33241fca7b65 (LP #980199) and
    89438b46fc39270ac3d47345cd99caacf6b6dee1 (LP #919279).
    
    Signed-off-by: Lebbeous Fogle-Weekley <lebbeous at esilibrary.com>

diff --git a/Open-ILS/src/sql/Pg/version-upgrade/2.1-2.2-upgrade-db.sql b/Open-ILS/src/sql/Pg/version-upgrade/2.1-2.2-upgrade-db.sql
index 056fe82..a0fab7b 100644
--- a/Open-ILS/src/sql/Pg/version-upgrade/2.1-2.2-upgrade-db.sql
+++ b/Open-ILS/src/sql/Pg/version-upgrade/2.1-2.2-upgrade-db.sql
@@ -15692,3 +15692,55 @@ SELECT metabib.reingest_metabib_field_entries(source)
 
 
 COMMIT;
+
+-- Evergreen DB patch 0705.data.custom-org-tree-perms.sql
+--
+BEGIN;
+
+-- check whether patch can be applied
+SELECT evergreen.upgrade_deps_block_check('0705', :eg_version);
+
+INSERT INTO permission.perm_list (id, code, description)
+    VALUES (
+        528,
+        'ADMIN_ORG_UNIT_CUSTOM_TREE',
+        oils_i18n_gettext(
+            528,
+            'User may update custom org unit trees',
+            'ppl',
+            'description'
+        )
+    );
+
+COMMIT;
+
+
+-- Evergreen DB patch 0707.schema.acq-vandelay-integration.sql
+BEGIN;
+
+SELECT evergreen.upgrade_deps_block_check('0707', :eg_version);
+
+-- seed data --
+
+INSERT INTO permission.perm_list ( id, code, description )
+    VALUES (
+        529,
+        'ADMIN_IMPORT_MATCH_SET',
+        oils_i18n_gettext(
+            529,
+            'Allows a user to create/retrieve/update/delete vandelay match sets',
+            'ppl',
+            'description'
+        )
+    ), (
+        530,
+        'VIEW_IMPORT_MATCH_SET',
+        oils_i18n_gettext(
+            530,
+            'Allows a user to view vandelay match sets',
+            'ppl',
+            'description'
+        )
+    );
+
+COMMIT;

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

Summary of changes:
 .../sql/Pg/version-upgrade/2.1-2.2-upgrade-db.sql  |   52 ++++++++++++++++++++
 1 files changed, 52 insertions(+), 0 deletions(-)


hooks/post-receive
-- 
Evergreen ILS


More information about the open-ils-commits mailing list