]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/sql/Pg/upgrade/1061.data.recent-patrons.sql
LP#1733695: Stamping upgrade scripts for multilingual search
[working/Evergreen.git] / Open-ILS / src / sql / Pg / upgrade / 1061.data.recent-patrons.sql
1 BEGIN;
2
3 SELECT evergreen.upgrade_deps_block_check('1061', :eg_version);
4
5 INSERT INTO config.org_unit_setting_type
6     (name, label, description, grp, datatype)
7 VALUES (
8     'ui.staff.max_recent_patrons',
9     oils_i18n_gettext(
10         'ui.staff.max_recent_patrons',
11         'Number of Retrievable Recent Patrons',
12         'coust',
13         'label'
14     ),
15     oils_i18n_gettext(
16         'ui.staff.max_recent_patrons',
17         'Number of most recently accessed patrons that can be re-retrieved ' ||
18         'in the staff client.  A value of 0 or less disables the feature. Defaults to 1.',
19         'coust',
20         'description'
21     ),
22     'circ',
23     'integer'
24 );
25
26 COMMIT;