]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/sql/Pg/upgrade/0699.data.org-setting-ui.hide_copy_editor_fields.sql
LP#1564079 Checkout history skips nonexistent items
[Evergreen.git] / Open-ILS / src / sql / Pg / upgrade / 0699.data.org-setting-ui.hide_copy_editor_fields.sql
1 BEGIN;
2
3 SELECT evergreen.upgrade_deps_block_check('0699', :eg_version);
4
5 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype, grp )
6     VALUES (
7         'ui.hide_copy_editor_fields',
8         oils_i18n_gettext(
9             'ui.hide_copy_editor_fields',
10             'GUI: Hide these fields within the Item Attribute Editor',
11             'coust',
12             'label'
13         ),
14         oils_i18n_gettext(
15             'ui.hide_copy_editor_fields',
16             'This setting may be best maintained with the dedicated configuration'
17             || ' interface within the Item Attribute Editor.  However, here it'
18             || ' shows up as comma separated list of field identifiers to hide.',
19             'coust',
20             'description'
21         ),
22         'array',
23         'gui'
24     );
25
26
27 COMMIT;