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

(-)a/installer/data/mysql/db_revs/221105010.pl (-2 / +1 lines)
Lines 16-22 return { Link Here
16
            say $out "Added new index on borrowers.userid";
16
            say $out "Added new index on borrowers.userid";
17
        }
17
        }
18
        unless ( index_exists( 'borrowers', 'middle_name_idx' ) ) {
18
        unless ( index_exists( 'borrowers', 'middle_name_idx' ) ) {
19
            $dbh->do(q{CREATE INDEX middle_name_idx ON borrowers ( middle_name )});
19
            $dbh->do(q{CREATE INDEX middle_name_idx ON borrowers ( middle_name(768) )});
20
            say $out "Added new index on borrowers.midddle_name";
20
            say $out "Added new index on borrowers.midddle_name";
21
        }
21
        }
22
    },
22
    },
23
- 

Return to bug 33489