]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/sql/Pg/upgrade/0634.security_lockdown.sql
LP#1759238: stamping upgrade script
[Evergreen.git] / Open-ILS / src / sql / Pg / upgrade / 0634.security_lockdown.sql
1 BEGIN;
2
3 -- check whether patch can be applied
4 SELECT evergreen.upgrade_deps_block_check('0634', :eg_version);
5
6 INSERT INTO permission.perm_list ( id, code, description ) VALUES
7  ( 513, 'DEBUG_CLIENT', oils_i18n_gettext( 513,
8     'Allows a user to use debug functions in the staff client', 'ppl', 'description' ));
9
10 COMMIT;