]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/sql/Pg/upgrade/0625.data.opac_staff_saved_search_size.sql
LP#1806968 Teach Vandelay to pass correct auth tracker type
[working/Evergreen.git] / Open-ILS / src / sql / Pg / upgrade / 0625.data.opac_staff_saved_search_size.sql
1 -- Evergreen DB patch 0625.data.opac_staff_saved_search_size.sql
2
3 BEGIN;
4
5 SELECT evergreen.upgrade_deps_block_check('0625', :eg_version);
6
7 INSERT into config.org_unit_setting_type (name, grp, label, description, datatype)
8 VALUES (
9     'opac.staff_saved_search.size', 'opac',
10     oils_i18n_gettext('opac.staff_saved_search.size',
11         'OPAC: Number of staff client saved searches to display on left side of results and record details pages', 'coust', 'label'),
12     oils_i18n_gettext('opac.staff_saved_search.size',
13         'If unset, the OPAC (only when wrapped in the staff client!) will default to showing you your ten most recent searches on the left side of the results and record details pages.  If you actually don''t want to see this feature at all, set this value to zero at the top of your organizational tree.', 'coust', 'description'),
14     'integer'
15 );
16
17 COMMIT;