From 3a90d0f16507b978b2ee70fcadf46b4ad596aab0 Mon Sep 17 00:00:00 2001 From: Tomas Cohen Arazi Date: Sat, 31 Oct 2015 10:22:25 -0300 Subject: [PATCH] Bug 10937: (QA followup) updatedatabase.pl vs. kohastructure.sql field size missmatch The bug included a discussion about this field size. And it got corrected in kohastructure.sql to match the authorized values, but the updatedabase.pl entry was missed on hte fix. Signed-off-by: Tomas Cohen Arazi --- installer/data/mysql/updatedatabase.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index 0f036235d5..bd5da1807e 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -11155,7 +11155,7 @@ if ( CheckVersion($DBversion) ) { ALTER TABLE itemtypes ADD hideinopac TINYINT(1) NOT NULL DEFAULT 0 AFTER sip_media_type, - ADD searchcategory VARCHAR(20) DEFAULT NULL + ADD searchcategory VARCHAR(80) DEFAULT NULL AFTER hideinopac; }); print "Upgrade to $DBversion done (Bug 10937: Option to hide and group itemtypes from advanced search)\n"; -- 2.39.2