]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/sql/Pg/upgrade/0076.data.coust.ui_circ_patron_display_timeout_interval.sql
LP#1248734: (follow-up) add new indexes to schema update script
[Evergreen.git] / Open-ILS / src / sql / Pg / upgrade / 0076.data.coust.ui_circ_patron_display_timeout_interval.sql
1 -- Correct the description of the org unit setting to match its use.
2
3 BEGIN;
4
5 INSERT INTO config.upgrade_log (version) VALUES ('0076'); -- senator
6
7 DELETE FROM config.org_unit_setting_type WHERE name = 'ui.circ.patron_display_timeout_interval';
8
9 INSERT INTO config.org_unit_setting_type
10     (name, label, description, datatype) VALUES
11     ('ui.general.idle_timeout', 'GUI: Idle timeout', 'If you want staff client windows to be minimized after a certain amount of system idle time, set this to the number of seconds of idle time that you want to allow before minimizing (requires staff client restart).', 'integer');
12
13 COMMIT;