|
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 |
} |