Lines 22797-22802
if( CheckVersion( $DBversion ) ) {
Link Here
|
22797 |
NewVersion( $DBversion, 24807, "Add 'year' type to improve sorting behaviour" ); |
22797 |
NewVersion( $DBversion, 24807, "Add 'year' type to improve sorting behaviour" ); |
22798 |
} |
22798 |
} |
22799 |
|
22799 |
|
|
|
22800 |
$DBversion = '20.06.00.039'; |
22801 |
if( CheckVersion( $DBversion ) ) { |
22802 |
|
22803 |
if( !column_exists( 'hold_fill_targets', 'reserve_id' ) ) { |
22804 |
$dbh->do( "ALTER TABLE hold_fill_targets ADD COLUMN reserve_id int(11) DEFAULT NULL AFTER item_level_request" ); |
22805 |
} |
22806 |
|
22807 |
NewVersion( $DBversion, 18958, "Add reserve_id to hold_fill_targets"); |
22808 |
} |
22809 |
|
22800 |
# SEE bug 13068 |
22810 |
# SEE bug 13068 |
22801 |
# if there is anything in the atomicupdate, read and execute it. |
22811 |
# if there is anything in the atomicupdate, read and execute it. |
22802 |
my $update_dir = C4::Context->config('intranetdir') . '/installer/data/mysql/atomicupdate/'; |
22812 |
my $update_dir = C4::Context->config('intranetdir') . '/installer/data/mysql/atomicupdate/'; |
22803 |
- |
|
|