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

(-)a/installer/data/mysql/updatedatabase.pl (+7 lines)
Lines 4564-4569 if ( C4::Context->preference("Version") < TransformToNum($DBversion) ) { Link Here
4564
    SetVersion($DBversion);
4564
    SetVersion($DBversion);
4565
}
4565
}
4566
4566
4567
$DBversion = "3.06.00.002";
4568
if ( C4::Context->preference("Version") < TransformToNum($DBversion) ) {
4569
    $dbh->do("UPDATE borrowers SET debarred=NULL WHERE debarred='0000-00-00';");
4570
    print "Setting NULL to debarred where 0000-00-00 is stored (bug 7272)";
4571
    SetVersion($DBversion);
4572
}
4573
4567
4574
4568
=head1 FUNCTIONS
4575
=head1 FUNCTIONS
4569
4576
(-)a/kohaversion.pl (-2 / +1 lines)
Lines 16-22 the kohaversion is divided in 4 parts : Link Here
16
use strict;
16
use strict;
17
17
18
sub kohaversion {
18
sub kohaversion {
19
    our $VERSION = '3.06.00.001';
19
    our $VERSION = '3.06.00.002';
20
    # version needs to be set this way
20
    # version needs to be set this way
21
    # so that it can be picked up by Makefile.PL
21
    # so that it can be picked up by Makefile.PL
22
    # during install
22
    # during install
23
- 

Return to bug 7272