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

(-)a/Koha.pm (-1 / +1 lines)
Lines 29-35 use vars qw{ $VERSION }; Link Here
29
# - #4 : the developer version. The 4th number is the database subversion.
29
# - #4 : the developer version. The 4th number is the database subversion.
30
#        used by developers when the database changes. updatedatabase take care of the changes itself
30
#        used by developers when the database changes. updatedatabase take care of the changes itself
31
#        and is automatically called by Auth.pm when needed.
31
#        and is automatically called by Auth.pm when needed.
32
$VERSION = "20.06.00.038";
32
$VERSION = "20.06.00.039";
33
33
34
sub version {
34
sub version {
35
    return $VERSION;
35
    return $VERSION;
(-)a/installer/data/mysql/atomicupdate/bug_18958_add_reserve_id_to_hold_fill_targets.perl (-9 lines)
Lines 1-9 Link Here
1
$DBversion = 'XXX'; # will be replaced by the RM
2
if( CheckVersion( $DBversion ) ) {
3
4
    if( !column_exists( 'hold_fill_targets', 'reserve_id' ) ) {
5
        $dbh->do( "ALTER TABLE hold_fill_targets ADD COLUMN reserve_id int(11) DEFAULT NULL AFTER item_level_request" );
6
    }
7
8
    NewVersion( $DBversion, 18958, "Add reserve_id to hold_fill_targets");
9
}
(-)a/installer/data/mysql/updatedatabase.pl (-1 / +10 lines)
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
- 

Return to bug 25265