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';