From 9605b2edcf834df205d631d4114444fb8d0d7cc0 Mon Sep 17 00:00:00 2001 From: David Cook Date: Fri, 9 May 2025 02:24:54 +0000 Subject: [PATCH] Bug 38330: (QA follow-up) Fix SQL syntax error Signed-off-by: David Cook --- installer/data/mysql/atomicupdate/bug_38330.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installer/data/mysql/atomicupdate/bug_38330.pl b/installer/data/mysql/atomicupdate/bug_38330.pl index 35f504fc05..b751fb453e 100755 --- a/installer/data/mysql/atomicupdate/bug_38330.pl +++ b/installer/data/mysql/atomicupdate/bug_38330.pl @@ -12,7 +12,7 @@ return { $dbh->do( q{ ALTER TABLE `biblio` - ADD COLUMN `opac_suppressed` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'whether the record should be suppressed in the OPAC' AFTER `abstract` + ADD COLUMN `opac_suppressed` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'whether the record should be suppressed in the OPAC' AFTER `abstract`, ADD INDEX `suppressedidx` (`opac_suppressed`); } ); -- 2.39.5