From 4d4be17afc0dc2fda311f2eea3ff32ea10a45049 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Thu, 18 Mar 2021 15:04:47 +0100 Subject: [PATCH] Bug 27835: DBRev 20.12.00.025 (cherry picked from commit 4e177268294ebb8a9c7430cfaca16a0724d73a6a) Signed-off-by: Fridolin Somers --- Koha.pm | 2 +- installer/data/mysql/atomicupdate/bug_27835.perl | 10 ---------- installer/data/mysql/updatedatabase.pl | 11 +++++++++++ 3 files changed, 12 insertions(+), 11 deletions(-) delete mode 100644 installer/data/mysql/atomicupdate/bug_27835.perl diff --git a/Koha.pm b/Koha.pm index f1baa27c78..4221af0429 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.11.03.004"; +$VERSION = "20.11.03.005"; sub version { return $VERSION; diff --git a/installer/data/mysql/atomicupdate/bug_27835.perl b/installer/data/mysql/atomicupdate/bug_27835.perl deleted file mode 100644 index b921007969..0000000000 --- a/installer/data/mysql/atomicupdate/bug_27835.perl +++ /dev/null @@ -1,10 +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 ('ChargeFinesOnClosedDays', '0', NULL, 'Charge fines on days the library is closed.', 'YesNo') - |); - - NewVersion( $DBversion, 27835, "Add new system preference ChargeFinesOnClosedDays"); -} diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index 775159f8f5..f957fb6d48 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -23497,6 +23497,17 @@ if( CheckVersion( $DBversion ) ) { NewVersion( $DBversion, 27808, "Adjust items.onloan if needed" ); } +$DBversion = '20.11.03.005'; +if( CheckVersion( $DBversion ) ) { + + $dbh->do(q| + INSERT IGNORE INTO systempreferences (variable,value,options,explanation,type) + VALUES ('ChargeFinesOnClosedDays', '0', NULL, 'Charge fines on days the library is closed.', 'YesNo') + |); + + NewVersion( $DBversion, 27835, "Add new system preference ChargeFinesOnClosedDays"); +} + # 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