]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/sql/Pg/upgrade/0081.data.org-setting-clear-hold-shelf.sql
LP#1733695: Stamping upgrade scripts for multilingual search
[working/Evergreen.git] / Open-ILS / src / sql / Pg / upgrade / 0081.data.org-setting-clear-hold-shelf.sql
1 BEGIN;
2
3 INSERT INTO config.upgrade_log (version) VALUES ('0081');
4
5 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype, fm_class ) 
6     VALUES ( 
7         'circ.holds.clear_shelf.copy_status',
8         oils_i18n_gettext('circ.holds.clear_shelf.copy_status', 'Holds: Clear shelf copy status', 'coust', 'label'),
9         oils_i18n_gettext('circ.holds.clear_shelf.copy_status', 'Any copies that have not been put into reshelving, in-transit, or on-holds-shelf (for a new hold) during the clear shelf process will be put into this status.  This is basically a purgatory status for copies waiting to be pulled from the shelf and processed by hand', 'coust', 'description'),
10         'link',
11         'ccs'
12     );
13
14 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype )
15     VALUES ( 
16         'circ.holds.clear_shelf.no_capture_holds',
17         oils_i18n_gettext('circ.holds.clear_shelf.no_capture_holds', 'Holds: Bypass hold capture during clear shelf process', 'coust', 'label'),
18         oils_i18n_gettext('circ.holds.clear_shelf.no_capture_holds', 'During the clear shelf process, avoid capturing new holds on cleared items.', 'coust', 'description'),
19         'bool'
20     );
21
22
23 COMMIT;