]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/sql/Pg/upgrade/0876.data.perm_list_group_system_admin.sql
LP#1744385: Additions and edits to release note entry
[working/Evergreen.git] / Open-ILS / src / sql / Pg / upgrade / 0876.data.perm_list_group_system_admin.sql
1 BEGIN;
2
3 SELECT evergreen.upgrade_deps_block_check('0876', :eg_version);
4
5 INSERT INTO permission.perm_list ( code, description ) VALUES
6  ( 'group_application.user.staff.admin.system_admin', oils_i18n_gettext( '',
7     'Allow a user to add/remove users to/from the "System Administrator" group', 'ppl', 'description' )),
8  ( 'group_application.user.staff.cat_admin', oils_i18n_gettext( '', 
9     'Allow a user to add/remove users to/from the "Cataloging Administrator" group', 'ppl', 'description' )),
10  ( 'group_application.user.staff.circ_admin', oils_i18n_gettext( '', 
11     'Allow a user to add/remove users to/from the "Circulation Administrator" group', 'ppl', 'description' )),
12  ( 'group_application.user.staff.data_review', oils_i18n_gettext( '', 
13     'Allow a user to add/remove users to/from the "Data Review" group', 'ppl', 'description' )),
14  ( 'group_application.user.staff.volunteers', oils_i18n_gettext( '', 
15     'Allow a user to add/remove users to/from the "Volunteers" group', 'ppl', 'description' ))
16 ;
17
18 COMMIT;