]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/sql/Pg/upgrade/0835.data.yaous-disable-patron-credit.sql
LP#1947173: Clean up bad cataloging pot hole
[Evergreen.git] / Open-ILS / src / sql / Pg / upgrade / 0835.data.yaous-disable-patron-credit.sql
1 BEGIN;
2
3 SELECT evergreen.upgrade_deps_block_check('0835', :eg_version);
4
5 INSERT INTO config.org_unit_setting_type 
6     (grp, name, datatype, label, description) 
7 VALUES (
8     'finance',
9     'circ.disable_patron_credit',
10     'bool',
11     oils_i18n_gettext(
12         'circ.disable_patron_credit',
13         'Disable Patron Credit',
14         'coust',
15         'label'
16     ),
17     oils_i18n_gettext(
18         'circ.disable_patron_credit',
19         'Do not allow patrons to accrue credit or pay fines/fees with accrued credit',
20         'coust',
21         'description'
22     )
23 );
24
25 COMMIT;