]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/sql/Pg/upgrade/0074.data.org-setting-work-log.sql
LP#1155329: better enforce cat.bib.use_id_for_tcn
[working/Evergreen.git] / Open-ILS / src / sql / Pg / upgrade / 0074.data.org-setting-work-log.sql
1 BEGIN;
2
3 INSERT INTO config.upgrade_log (version) VALUES ('0074'); -- phasefx
4
5 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) VALUES
6     ( 'ui.admin.work_log.max_entries',
7         oils_i18n_gettext('ui.admin.work_log.max_entries', 'GUI: Work Log: Maximum Actions Logged', 'coust', 'label'),
8         oils_i18n_gettext('ui.admin.work_log.max_entries', 'Maximum entries for "Most Recent Staff Actions" section of the Work Log interface.', 'coust', 'description'),
9       'interval' ),
10
11     ( 'ui.admin.patron_log.max_entries',
12         oils_i18n_gettext('ui.admin.patron_log.max_entries', 'GUI: Work Log: Maximum Patrons Logged', 'coust', 'label'),
13         oils_i18n_gettext('ui.admin.patron_log.max_entries', 'Maximum entries for "Most Recently Affected Patrons..." section of the Work Log interface.', 'coust', 'description'),
14       'interval' )
15 ;
16
17 COMMIT;