]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/sql/Pg/upgrade/0705.data.custom-org-tree-perms.sql
LP1615805 No inputs after submit in patron search (AngularJS)
[working/Evergreen.git] / Open-ILS / src / sql / Pg / upgrade / 0705.data.custom-org-tree-perms.sql
1 -- Evergreen DB patch 0705.data.custom-org-tree-perms.sql
2 --
3 BEGIN;
4
5 -- check whether patch can be applied
6 SELECT evergreen.upgrade_deps_block_check('0705', :eg_version);
7
8 INSERT INTO permission.perm_list (id, code, description) 
9     VALUES ( 
10         528, 
11         'ADMIN_ORG_UNIT_CUSTOM_TREE', 
12         oils_i18n_gettext( 
13             528, 
14             'User may update custom org unit trees', 
15             'ppl', 
16             'description' 
17         )
18     );
19
20 COMMIT;