]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/sql/Pg/upgrade/0741.data.toolbar_perms.sql
LP#1117808: release notes for New Access points for MARC Overlay
[Evergreen.git] / Open-ILS / src / sql / Pg / upgrade / 0741.data.toolbar_perms.sql
1 BEGIN;
2
3 SELECT evergreen.upgrade_deps_block_check('0741', :eg_version);
4
5 INSERT INTO permission.perm_list ( id, code, description ) VALUES (
6     540,
7     'ADMIN_TOOLBAR_FOR_ORG',
8     oils_i18n_gettext(
9         540,
10         'Allows a user to create, edit, and delete custom toolbars for org units',
11         'ppl',
12         'description'
13     )
14 ), (
15     541,
16     'ADMIN_TOOLBAR_FOR_WORKSTATION',
17     oils_i18n_gettext(
18         541,
19         'Allows a user to create, edit, and delete custom toolbars for workstations',
20         'ppl',
21         'description'
22     )
23 ), (
24     542,
25     'ADMIN_TOOLBAR_FOR_USER',
26     oils_i18n_gettext(
27         542,
28         'Allows a user to create, edit, and delete custom toolbars for users',
29         'ppl',
30         'description'
31     )
32 );
33
34 COMMIT;
35