]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/sql/Pg/upgrade/XXXX.data.yaous_show_owning_lib_column.sql
LP1753536 - Add a new Owning Library column to the OPAC Items Out
[working/Evergreen.git] / Open-ILS / src / sql / Pg / upgrade / XXXX.data.yaous_show_owning_lib_column.sql
1 BEGIN;
2
3 SELECT evergreen.upgrade_deps_block_check('XXXX', :eg_version);
4
5 INSERT INTO config.org_unit_setting_type 
6     (grp, name, datatype, label, description)
7 VALUES (
8     'opac',
9     'opac.show_owning_lib_column', 'bool',
10     oils_i18n_gettext(
11         'opac.show_owning_lib_column',
12         'Show Owning Lib in Items Out',
13         'coust',
14         'label'
15     ),
16     oils_i18n_gettext(
17         'opac.show_owning_lib_column',
18 'If enabled, the Owning Lib will be shown in the Items Out display.' ||
19 ' This may assist in requesting additional renewals',
20         'coust',
21         'description'
22     )
23 );
24
25 COMMIT;