Lines 1-7
Link Here
|
1 |
$DBversion = 'XXX'; # will be replaced by the RM |
1 |
$DBversion = 'XXX'; # will be replaced by the RM |
2 |
if( CheckVersion( $DBversion ) ) { |
2 |
if ( CheckVersion($DBversion) ) { |
3 |
|
3 |
|
4 |
unless (TableExists('marc_overlay_rules')) { |
4 |
unless ( TableExists('marc_overlay_rules') ) { |
5 |
$dbh->do(q{ |
5 |
$dbh->do(q{ |
6 |
CREATE TABLE IF NOT EXISTS `marc_overlay_rules` ( |
6 |
CREATE TABLE IF NOT EXISTS `marc_overlay_rules` ( |
7 |
`id` int(11) NOT NULL auto_increment, |
7 |
`id` int(11) NOT NULL auto_increment, |
Lines 35-39
if( CheckVersion( $DBversion ) ) {
Link Here
|
35 |
); |
35 |
); |
36 |
}); |
36 |
}); |
37 |
|
37 |
|
38 |
NewVersion( $DBversion, 14957, "Add a way to define overlay rules for incoming MARC records)\n"; |
38 |
NewVersion( $DBversion, 14957, "Add a way to define overlay rules for incoming MARC records)\n" ); |
39 |
} |
39 |
} |
40 |
- |
|
|