Bug 20487: DBRev 18.06.00.018
Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
This commit is contained in:
parent
74cc24d227
commit
579e53de7e
3 changed files with 12 additions and 13 deletions
2
Koha.pm
2
Koha.pm
|
@ -29,7 +29,7 @@ use vars qw{ $VERSION };
|
|||
# - #4 : the developer version. The 4th number is the database subversion.
|
||||
# used by developers when the database changes. updatedatabase take care of the changes itself
|
||||
# and is automatically called by Auth.pm when needed.
|
||||
$VERSION = "18.06.00.017";
|
||||
$VERSION = "18.06.00.018";
|
||||
|
||||
sub version {
|
||||
return $VERSION;
|
||||
|
|
|
@ -1,12 +0,0 @@
|
|||
$DBversion = 'XXX'; # will be replaced by the RM
|
||||
if( CheckVersion( $DBversion ) ) {
|
||||
$dbh->do( q|
|
||||
UPDATE items LEFT JOIN issues USING (itemnumber)
|
||||
SET items.onloan = NULL
|
||||
WHERE issues.itemnumber IS NULL
|
||||
|);
|
||||
|
||||
# Always end with this (adjust the bug info)
|
||||
SetVersion( $DBversion );
|
||||
print "Upgrade to $DBversion done (Bug 20487: Clear items.onloan for unissued items)\n";
|
||||
}
|
|
@ -16273,6 +16273,17 @@ if( CheckVersion( $DBversion ) ) {
|
|||
print "Upgrade to $DBversion done (Bug 21144: Add ROADTYPE to default authorised values categories)\n";
|
||||
}
|
||||
|
||||
$DBversion = '18.06.00.018';
|
||||
if( CheckVersion( $DBversion ) ) {
|
||||
$dbh->do( q|
|
||||
UPDATE items LEFT JOIN issues USING (itemnumber)
|
||||
SET items.onloan = NULL
|
||||
WHERE issues.itemnumber IS NULL
|
||||
|);
|
||||
SetVersion( $DBversion );
|
||||
print "Upgrade to $DBversion done (Bug 20487: Clear items.onloan for unissued items)\n";
|
||||
}
|
||||
|
||||
# SEE bug 13068
|
||||
# if there is anything in the atomicupdate, read and execute it.
|
||||
|
||||
|
|
Loading…
Reference in a new issue