]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/sql/Pg/upgrade/0524.data.toggle_unified_volume_copy_editor.sql
LP#1838995: (follow-up) adjust ID for new permission
[Evergreen.git] / Open-ILS / src / sql / Pg / upgrade / 0524.data.toggle_unified_volume_copy_editor.sql
1 BEGIN;
2
3 INSERT INTO config.upgrade_log (version) VALUES ('0524'); -- phasefx
4
5 INSERT into config.org_unit_setting_type
6 ( name, label, description, datatype ) VALUES
7 ( 'ui.unified_volume_copy_editor',
8   oils_i18n_gettext( 'ui.unified_volume_copy_editor', 'GUI: Unified Volume/Item Creator/Editor', 'coust', 'label'),
9   oils_i18n_gettext( 'ui.unified_volume_copy_editor', 'If true combines the Volume/Copy Creator and Item Attribute Editor in some instances.', 'coust', 'description'),
10   'bool'
11 );
12
13 COMMIT;