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 |
- |
|
|