View | Details | Raw Unified | Return to bug 19113
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 = "17.06.00.013";
32
$VERSION = "17.06.00.014";
33
33
34
sub version {
34
sub version {
35
    return $VERSION;
35
    return $VERSION;
(-)a/installer/data/mysql/atomicupdate/bug15685.perl (-13 lines)
Lines 1-13 Link Here
1
$DBversion = 'XXX';  # will be replaced by the RM
2
if( CheckVersion( $DBversion ) ) {
3
4
    unless( column_exists('aqbasket','create_items') ){
5
        $dbh->do(q{
6
            ALTER TABLE aqbasket
7
                ADD COLUMN create_items ENUM('ordering', 'receiving', 'cataloguing') default NULL AFTER is_standing
8
        });
9
    }
10
11
    SetVersion( $DBversion );
12
    print "Upgrade to $DBversion done (Bug 15685: Allow creation of items (AcqCreateItem) to be customizable per-basket)\n";
13
}
(-)a/installer/data/mysql/updatedatabase.pl (-1 / +13 lines)
Lines 14737-14742 if( CheckVersion( $DBversion ) ) { Link Here
14737
    print "Upgrade to $DBversion done (Bug 16401 - fix potentialy bad set staffClientBaseURL preference)\n";
14737
    print "Upgrade to $DBversion done (Bug 16401 - fix potentialy bad set staffClientBaseURL preference)\n";
14738
}
14738
}
14739
14739
14740
$DBversion = '17.06.00.014';
14741
if( CheckVersion( $DBversion ) ) {
14742
    unless( column_exists('aqbasket','create_items') ){
14743
        $dbh->do(q{
14744
            ALTER TABLE aqbasket
14745
                ADD COLUMN create_items ENUM('ordering', 'receiving', 'cataloguing') default NULL AFTER is_standing
14746
        });
14747
    }
14748
14749
    SetVersion( $DBversion );
14750
    print "Upgrade to $DBversion done (Bug 15685 - Allow creation of items (AcqCreateItem) to be customizable per-basket)\n";
14751
}
14752
14740
# DEVELOPER PROCESS, search for anything to execute in the db_update directory
14753
# DEVELOPER PROCESS, search for anything to execute in the db_update directory
14741
# SEE bug 13068
14754
# SEE bug 13068
14742
# if there is anything in the atomicupdate, read and execute it.
14755
# if there is anything in the atomicupdate, read and execute it.
14743
- 

Return to bug 19113