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

(-)a/installer/data/mysql/atomicupdate/Bug11297_z3950servers_attributes.perl (+9 lines)
Line 0 Link Here
1
$DBversion = 'XXX';  # will be replaced by the RM
2
if( CheckVersion( $DBversion ) ) {
3
    if( !column_exists( 'z3950servers', 'attributes' ) ) {
4
        $dbh->do( "ALTER TABLE z3950servers ADD COLUMN attributes VARCHAR(255) after add_xslt" );
5
    }
6
7
    SetVersion( $DBversion );
8
    print "Upgrade to $DBversion done (Bug 11297 - Add support for custom PQF attributes for Z39.50 server searches)\n";
9
}
(-)a/installer/data/mysql/atomicupdate/Bug11297_z3950servers_attributes.sql (-2 lines)
Line 1 Link Here
1
 ALTER TABLE z3950servers ADD COLUMN attributes VARCHAR(255) after add_xslt;
2
- 

Return to bug 11297