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

(-)a/installer/data/mysql/updatedatabase.pl (-1 / +1 lines)
Lines 4234-4240 if ( C4::Context->preference("Version") < TransformToNum($DBversion) ) { Link Here
4234
    SetVersion($DBversion);
4234
    SetVersion($DBversion);
4235
}
4235
}
4236
4236
4237
$DBversion = '3.03.00.045';
4237
$DBversion = 'XXX';
4238
if ( C4::Context->preference("Version") < TransformToNum($DBversion) ) {
4238
if ( C4::Context->preference("Version") < TransformToNum($DBversion) ) {
4239
    $dbh->do("ALTER TABLE `accountlines` ADD `note` text NULL default NULL");
4239
    $dbh->do("ALTER TABLE `accountlines` ADD `note` text NULL default NULL");
4240
    $dbh->do("ALTER TABLE `accountlines` ADD `manager_id` int( 11 ) NULL ");
4240
    $dbh->do("ALTER TABLE `accountlines` ADD `manager_id` int( 11 ) NULL ");
(-)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.03.00.044';
19
    our $VERSION = 'XXX';
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 5728