From c99cd7e77b9c2e8b9ea993ce0317b9535068123a Mon Sep 17 00:00:00 2001 From: Andrew Fuerste-Henry Date: Sun, 14 Mar 2021 18:53:39 +0000 Subject: [PATCH] DBRev 20.05.09.002 Signed-off-by: Andrew Fuerste-Henry --- 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 0a656c1cef..aef17e283a 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.05.09.001"; +$VERSION = "20.05.09.002"; 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 57a0540008..5986bbd2c5 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -22552,6 +22552,19 @@ if( CheckVersion( $DBversion ) ) { NewVersion( $DBversion, 7806, "Remove remaining possible 0000-00-00 values"); } +$DBversion = '20.05.09.002'; +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.39.5