]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/sql/Pg/upgrade/0051.data.org-setting-uncancel-hold-reset.sql
LP#1835085: stamp DB update
[Evergreen.git] / Open-ILS / src / sql / Pg / upgrade / 0051.data.org-setting-uncancel-hold-reset.sql
1 BEGIN;
2
3 INSERT INTO config.upgrade_log (version) VALUES ('0051');
4
5 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype )
6     VALUES (
7         'circ.holds.uncancel.reset_request_time',
8         'Holds: Reset request time on un-cancel',
9         'When a holds is uncanceled, reset the request time to push it to the end of the queue',
10         'bool'
11     );
12
13 COMMIT;