From: Chris Sharp Date: Thu, 21 Mar 2013 11:48:43 +0000 (-0400) Subject: adding the correct search labels X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=3a0672c5f91d1d1adbd96c48874d074d6039a431;p=evergreen%2Fpines.git adding the correct search labels --- diff --git a/Open-ILS/src/sql/Pg/version-upgrade/pines-post-upgrade-data.sql b/Open-ILS/src/sql/Pg/version-upgrade/pines-post-upgrade-data.sql index 8f7bc85592..e4a2532e97 100644 --- a/Open-ILS/src/sql/Pg/version-upgrade/pines-post-upgrade-data.sql +++ b/Open-ILS/src/sql/Pg/version-upgrade/pines-post-upgrade-data.sql @@ -11,6 +11,9 @@ UPDATE config.coded_value_map SET opac_visible = FALSE WHERE ctype = 'vr_format' UPDATE config.coded_value_map SET is_simple = TRUE WHERE ctype = 'item_lang' AND code IN ('chi', 'eng', 'fre', 'ger', 'hin', 'ita', 'jpn', 'kor', 'lat', 'por', 'rus', 'spa'); -- add user-friendly search labels for certain types +UPDATE config.coded_value_map SET search_label = 'DVD/Video' WHERE ctype = 'item_type' AND code = 'g'; +UPDATE config.coded_value_map SET search_label = 'Audiobooks' WHERE ctype = 'item_type' AND code = 'i'; +UPDATE config.coded_value_map SET search_label = 'Music' WHERE ctype = 'item_type' AND code = 'j'; -- add new types INSERT INTO config.coded_value_map (ctype, code, value) VALUES 'item_type', 'a,t', 'Books';