]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/sql/Pg/upgrade/0669.data.recall_and_force_holds.sql
Merge branch 'master' of git.evergreen-ils.org:Evergreen-DocBook into doc_consolidati...
[Evergreen.git] / Open-ILS / src / sql / Pg / upgrade / 0669.data.recall_and_force_holds.sql
1 -- Evergreen DB patch 0669.data.recall_and_force_holds.sql
2 --
3 -- FIXME: insert description of change, if needed
4 --
5 BEGIN;
6
7
8 -- check whether patch can be applied
9 SELECT evergreen.upgrade_deps_block_check('0669', :eg_version);
10
11 -- FIXME: add/check SQL statements to perform the upgrade
12 INSERT INTO permission.perm_list ( id, code, description ) VALUES
13  ( 517, 'COPY_HOLDS_FORCE', oils_i18n_gettext( 517, 
14     'Allow a user to place a force hold on a specific copy', 'ppl', 'description' )),
15  ( 518, 'COPY_HOLDS_RECALL', oils_i18n_gettext( 518, 
16     'Allow a user to place a cataloging recall on a specific copy', 'ppl', 'description' ));
17
18
19 COMMIT;