View | Details | Raw Unified | Return to bug 38330
Collapse All | Expand All

(-)a/installer/data/mysql/atomicupdate/bug_38330.pl (-2 / +1 lines)
Lines 12-18 return { Link Here
12
            $dbh->do(
12
            $dbh->do(
13
                q{
13
                q{
14
                ALTER TABLE `biblio`
14
                ALTER TABLE `biblio`
15
                    ADD COLUMN `opac_suppressed` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'whether the record should be suppressed in the OPAC' AFTER `abstract`
15
                    ADD COLUMN `opac_suppressed` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'whether the record should be suppressed in the OPAC' AFTER `abstract`,
16
                    ADD INDEX `suppressedidx` (`opac_suppressed`);
16
                    ADD INDEX `suppressedidx` (`opac_suppressed`);
17
                }
17
                }
18
            );
18
            );
19
- 

Return to bug 38330