]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/sql/Pg/upgrade/0383.data.org-setting-circ.do_not_tally_claims_returned.sql
LP#1426133: Set merge_profile_id_seq explicitly
[working/Evergreen.git] / Open-ILS / src / sql / Pg / upgrade / 0383.data.org-setting-circ.do_not_tally_claims_returned.sql
1 BEGIN;
2
3 INSERT INTO config.upgrade_log (version) VALUES ('0383'); -- phasefx
4
5 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) VALUES (
6         'circ.do_not_tally_claims_returned',
7         oils_i18n_gettext(
8             'circ.do_not_tally_claims_returned',
9             'Circulation: Do not include outstanding Claims Returned circulations in lump sum tallies in Patron Display.', 
10             'coust', 
11             'label'),
12         oils_i18n_gettext(
13             'circ.do_not_tally_claims_returned',
14             'In the Patron Display interface, the number of total active circulations for a given patron is presented in the Summary sidebar and underneath the Items Out navigation button.  This setting will prevent Claims Returned circulations from counting toward these tallies.',
15             'coust', 
16             'description'),
17         'bool'
18 );
19
20 COMMIT;