]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/sql/Pg/upgrade/0944.data.adjust_bills_perm.sql
LP#1096209: add check_sms_notify parameter to all relevant event defs
[Evergreen.git] / Open-ILS / src / sql / Pg / upgrade / 0944.data.adjust_bills_perm.sql
1 BEGIN;
2
3 SELECT evergreen.upgrade_deps_block_check('0944', :eg_version);
4
5 INSERT INTO permission.perm_list (id, code, description)
6     VALUES (
7         563,
8         'ADJUST_BILLS',
9         oils_i18n_gettext(
10             563,
11             'Allow a user to adjust a bill (generally to zero)',
12             'ppl',
13             'description'
14         )
15     );
16
17 COMMIT;