]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/sql/Pg/upgrade/0493.data.interval-descriptions.sql
LP#1643709: Stamping upgrade scripts
[Evergreen.git] / Open-ILS / src / sql / Pg / upgrade / 0493.data.interval-descriptions.sql
1 BEGIN;
2
3 INSERT INTO config.upgrade_log (version) VALUES ('0493'); -- dbs
4
5 UPDATE config.org_unit_setting_type
6     SET description = 'Amount of time before a hold expires at which point the patron should be alerted. Examples: "5 days", "1 hour"'
7     WHERE label = 'Holds: Expire Alert Interval';
8
9 UPDATE config.org_unit_setting_type
10     SET description = 'When predicting the amount of time a patron will be waiting for a hold to be fulfilled, this is the default estimated length of time to assume an item will be checked out. Examples: "3 weeks", "7 days"'
11     WHERE label = 'Holds: Default Estimated Wait';
12
13 UPDATE config.org_unit_setting_type
14     SET description = 'When predicting the amount of time a patron will be waiting for a hold to be fulfilled, this is the minimum estimated length of time to assume an item will be checked out. Examples: "1 week", "5 days"'
15     WHERE label = 'Holds: Minimum Estimated Wait';
16
17 UPDATE config.org_unit_setting_type
18     SET description = 'The purpose is to provide an interval of time after an item goes into the on-holds-shelf status before it appears to patrons that it is actually on the holds shelf.  This gives staff time to process the item before it shows as ready-for-pickup. Examples: "5 days", "1 hour"'
19     WHERE label = 'Hold Shelf Status Delay';
20
21 COMMIT;