From 76eb46f25f5f9b816776b2bf5fe6e11fcedfbad4 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Wed, 14 Oct 2020 12:37:24 +0000 Subject: [PATCH] Bug 12556: DBRev 20.06.00.051 Signed-off-by: Jonathan Druart --- Koha.pm | 2 +- installer/data/mysql/atomicupdate/bug_12556.perl | 8 -------- installer/data/mysql/updatedatabase.pl | 10 ++++++++++ 3 files changed, 11 insertions(+), 9 deletions(-) delete mode 100644 installer/data/mysql/atomicupdate/bug_12556.perl diff --git a/Koha.pm b/Koha.pm index 711f4b4775..9dbea75e7b 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.06.00.050"; +$VERSION = "20.06.00.051"; sub version { return $VERSION; diff --git a/installer/data/mysql/atomicupdate/bug_12556.perl b/installer/data/mysql/atomicupdate/bug_12556.perl deleted file mode 100644 index 06cae68b96..0000000000 --- a/installer/data/mysql/atomicupdate/bug_12556.perl +++ /dev/null @@ -1,8 +0,0 @@ -$DBversion = 'XXX'; # will be replaced by the RM -if( CheckVersion( $DBversion ) ) { - $dbh->do(q{ - INSERT IGNORE INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) VALUES - ('HoldsNeedProcessingSIP', '0', NULL, 'Require staff to check-in before hold is set to waiting state', 'YesNo' ) - }); - NewVersion( $DBversion, 12556, "Add new syspref HoldsNeedProcessingSIP"); -} diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index b5ce8194fa..f475dabe9a 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -23046,6 +23046,16 @@ if ( CheckVersion($DBversion) ) { NewVersion( $DBversion, 19382, "Add ability to block guarantees based on fees owed by guarantor and other guarantee - new system preference 'NoIssuesChargeGuarantorsWithGuarantees'"); } +$DBversion = '20.06.00.051'; +if( CheckVersion( $DBversion ) ) { + $dbh->do(q{ + INSERT IGNORE INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) VALUES + ('HoldsNeedProcessingSIP', '0', NULL, 'Require staff to check-in before hold is set to waiting state', 'YesNo' ) + }); + + NewVersion( $DBversion, 12556, "Add new syspref HoldsNeedProcessingSIP"); +} + # 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