]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/sql/Pg/upgrade/0585.checkout_fills_related_hold_exact_match.sql
LP#1744385: Additions and edits to release note entry
[working/Evergreen.git] / Open-ILS / src / sql / Pg / upgrade / 0585.checkout_fills_related_hold_exact_match.sql
1 BEGIN;
2
3 -- check whether patch can be applied
4 SELECT evergreen.upgrade_deps_block_check('0585', :eg_version);
5
6 INSERT into config.org_unit_setting_type
7 ( name, label, description, datatype ) VALUES
8 ( 'circ.checkout_fills_related_hold_exact_match_only',
9     'Checkout Fills Related Hold On Valid Copy Only',
10     'When filling related holds on checkout only match on items that are valid for opportunistic capture for the hold. Without this set a Title or Volume hold could match when the item is not holdable. With this set only holdable items will match.',
11     'bool');
12
13 COMMIT;