From aa41987dbfebcd61e1a7b5847095f55261c55d5e Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Mon, 1 Mar 2021 14:10:40 +0000 Subject: [PATCH] Bug 27808: DBRev 20.12.00.018 Signed-off-by: Jonathan Druart --- Koha.pm | 2 +- installer/data/mysql/atomicupdate/bug_27808.perl | 12 ------------ installer/data/mysql/updatedatabase.pl | 13 +++++++++++++ 3 files changed, 14 insertions(+), 13 deletions(-) delete mode 100644 installer/data/mysql/atomicupdate/bug_27808.perl diff --git a/Koha.pm b/Koha.pm index d5804dbdd7..91acdd7b0f 100644 --- a/Koha.pm +++ b/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 = "20.12.00.017"; +$VERSION = "20.12.00.018"; sub version { return $VERSION; diff --git a/installer/data/mysql/atomicupdate/bug_27808.perl b/installer/data/mysql/atomicupdate/bug_27808.perl deleted file mode 100644 index 0cf95a5158..0000000000 --- a/installer/data/mysql/atomicupdate/bug_27808.perl +++ /dev/null @@ -1,12 +0,0 @@ -$DBversion = 'XXX'; # will be replaced by the RM -if( CheckVersion( $DBversion ) ) { - - $dbh->do(q| - UPDATE items - LEFT JOIN issues ON issues.itemnumber=items.itemnumber - SET items.onloan=CAST(issues.date_due AS DATE) - WHERE items.onloan IS NULL - |); - - NewVersion( $DBversion, 27808, "Adjust items.onloan if needed"); -} diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index 07da3879e6..55e8ec9396 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -23568,6 +23568,19 @@ if( CheckVersion( $DBversion ) ) { NewVersion( $DBversion, 26937, "Add CheckPrevCheckoutDelay system preference)" ); } +$DBversion = '20.12.00.018'; +if( CheckVersion( $DBversion ) ) { + + $dbh->do(q| + UPDATE items + LEFT JOIN issues ON issues.itemnumber=items.itemnumber + SET items.onloan=CAST(issues.date_due AS DATE) + WHERE items.onloan IS NULL + |); + + NewVersion( $DBversion, 27808, "Adjust items.onloan if needed" ); +} + # SEE bug 13068 # if there is anything in the atomicupdate, read and execute it. my $update_dir = C4::Context->config('intranetdir') . '/installer/data/mysql/atomicupdate/'; -- 2.20.1