From 9baea3acebe383f80c75e62b0ae5ac61330dcc3c Mon Sep 17 00:00:00 2001 From: Lucas Gass Date: Fri, 17 Jul 2020 19:52:49 +0000 Subject: [PATCH] Bug 25851: DBRev 20.05.01.003 Signed-off-by: Lucas Gass --- Koha.pm | 2 +- installer/data/mysql/atomicupdate/bug_25851.perl | 7 ------- installer/data/mysql/updatedatabase.pl | 8 ++++++++ 3 files changed, 9 insertions(+), 8 deletions(-) delete mode 100644 installer/data/mysql/atomicupdate/bug_25851.perl diff --git a/Koha.pm b/Koha.pm index 3ff28feb58..6d386e63c3 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.01.002"; +$VERSION = "20.05.01.003"; sub version { return $VERSION; diff --git a/installer/data/mysql/atomicupdate/bug_25851.perl b/installer/data/mysql/atomicupdate/bug_25851.perl deleted file mode 100644 index a0aeec0814..0000000000 --- a/installer/data/mysql/atomicupdate/bug_25851.perl +++ /dev/null @@ -1,7 +0,0 @@ -$DBversion = 'XXX'; # will be replaced by the RM -if( CheckVersion( $DBversion ) ) { - $dbh->do(" - DELETE FROM circulation_rules WHERE rule_name='holdallowed' AND rule_value=''; - "); - NewVersion( $DBversion, 25851, "Remove holdallowed rule if value is an empty string"); -} diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index e7bf75de53..82032d7d7f 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -22212,6 +22212,14 @@ if( CheckVersion( $DBversion ) ) { NewVersion( $DBversion, 25184, "Items with a negative notforloan status should not be captured for holds"); } +$DBversion = '20.05.01.003'; +if( CheckVersion( $DBversion ) ) { + $dbh->do(" + DELETE FROM circulation_rules WHERE rule_name='holdallowed' AND rule_value=''; + "); + NewVersion( $DBversion, 25851, "Remove holdallowed rule if value is an empty string"); +} + # 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