]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/sql/Pg/upgrade/0544.data.patron_no_collections.sql
Break up expensive queries, match index to quals
[working/Evergreen.git] / Open-ILS / src / sql / Pg / upgrade / 0544.data.patron_no_collections.sql
1 BEGIN;
2
3 INSERT INTO config.upgrade_log (version) VALUES ('0544');
4
5 INSERT INTO config.usr_setting_type 
6 ( name, opac_visible, label, description, datatype) VALUES 
7 ( 'circ.collections.exempt',
8   FALSE, 
9   oils_i18n_gettext('circ.collections.exempt', 'Collections: Exempt', 'cust', 'description'),
10   oils_i18n_gettext('circ.collections.exempt', 'User is exempt from collections tracking/processing', 'cust', 'description'),
11   'bool'
12 );
13
14 COMMIT;
15