View | Details | Raw Unified | Return to bug 15933
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.034";
32
$VERSION = "20.06.00.035";
33
33
34
sub version {
34
sub version {
35
    return $VERSION;
35
    return $VERSION;
(-)a/installer/data/mysql/atomicupdate/bug_23682.perl (-10 lines)
Lines 1-10 Link Here
1
$DBversion = 'XXX'; # will be replaced by the RM
2
if ( CheckVersion( $DBversion ) ) {
3
    $dbh->do(q{
4
        INSERT IGNORE INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) VALUES
5
        ('EdifactInvoiceImport', 'automatic', 'automatic|manual', "If on, don't auto-import EDI invoices, just keep them in the database with the status 'new'", 'Choice')
6
    });
7
8
    SetVersion( $DBversion );
9
    print "Upgrade to $DBversion done (Bug XXXXX - description)\n";
10
}
(-)a/installer/data/mysql/updatedatabase.pl (-1 / +10 lines)
Lines 22759-22764 if( CheckVersion( $DBversion ) ) { Link Here
22759
    NewVersion( $DBversion, 24197, "Add new system preference 'AddressForFailedOverdueNotices'" );
22759
    NewVersion( $DBversion, 24197, "Add new system preference 'AddressForFailedOverdueNotices'" );
22760
}
22760
}
22761
22761
22762
$DBversion = '20.06.00.035';
22763
if ( CheckVersion( $DBversion ) ) {
22764
    $dbh->do(q{
22765
        INSERT IGNORE INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) VALUES
22766
        ('EdifactInvoiceImport', 'automatic', 'automatic|manual', "If on, don't auto-import EDI invoices, just keep them in the database with the status 'new'", 'Choice')
22767
    });
22768
22769
    NewVersion( $DBversion, 23682, "Add new system preference 'EdifactInvoiceImport'" );
22770
}
22771
22762
# SEE bug 13068
22772
# SEE bug 13068
22763
# if there is anything in the atomicupdate, read and execute it.
22773
# if there is anything in the atomicupdate, read and execute it.
22764
my $update_dir = C4::Context->config('intranetdir') . '/installer/data/mysql/atomicupdate/';
22774
my $update_dir = C4::Context->config('intranetdir') . '/installer/data/mysql/atomicupdate/';
22765
- 

Return to bug 15933