From 48f4383bda8c9236ea130280cfb5e5cbf766a7e5 Mon Sep 17 00:00:00 2001 From: Joy Nelson Date: Fri, 13 Mar 2020 00:29:45 +0000 Subject: [PATCH] Bug 21633: DBRev 19.11.03.003 Signed-off-by: Joy Nelson --- Koha.pm | 2 +- .../bug_21633_remove_finesMode_test.perl | 14 -------------- installer/data/mysql/updatedatabase.pl | 14 ++++++++++++++ 3 files changed, 15 insertions(+), 15 deletions(-) delete mode 100644 installer/data/mysql/atomicupdate/bug_21633_remove_finesMode_test.perl diff --git a/Koha.pm b/Koha.pm index 4236c8ed23..c91f711e19 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 = "19.11.03.002"; +$VERSION = "19.11.03.003"; sub version { return $VERSION; diff --git a/installer/data/mysql/atomicupdate/bug_21633_remove_finesMode_test.perl b/installer/data/mysql/atomicupdate/bug_21633_remove_finesMode_test.perl deleted file mode 100644 index 58b0282f56..0000000000 --- a/installer/data/mysql/atomicupdate/bug_21633_remove_finesMode_test.perl +++ /dev/null @@ -1,14 +0,0 @@ -$DBversion = 'XXX'; -if( CheckVersion( $DBversion ) ) { - $dbh->do(q{ - UPDATE systempreferences SET value = 'off' - WHERE variable = 'finesMode' AND (value <> 'production' OR value IS NULL) - }); - $dbh->do(q{ - UPDATE systempreferences SET options = 'off|production', - explanation = "Choose the fines mode, 'off' (do not accrue fines) or 'production' (accrue overdue fines). Requires accruefines cronjob or CalculateFinesOnReturn system preference." - WHERE variable = 'finesMode' - }); - SetVersion( $DBversion ); - print "Upgrade to $DBversion done (Bug 21633 - Remove finesMode 'test')\n"; -} diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index 4a979b1d74..98bbcdac08 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -20372,6 +20372,20 @@ if( CheckVersion( $DBversion ) ) { print "Upgrade to $DBversion done (Bug 24640 - Allow quotes.timestamp to be NULL)\n"; } +$DBversion = '19.11.03.003'; +if( CheckVersion( $DBversion ) ) { + $dbh->do(q{ + UPDATE systempreferences SET value = 'off' + WHERE variable = 'finesMode' AND (value <> 'production' OR value IS NULL) + }); + $dbh->do(q{ + UPDATE systempreferences SET options = 'off|production', + explanation = "Choose the fines mode, 'off' (do not accrue fines) or 'production' (accrue overdue fines). Requires accruefines cronjob or CalculateFinesOnReturn system preference." + WHERE variable = 'finesMode' + }); + SetVersion( $DBversion ); + print "Upgrade to $DBversion done (Bug 21633 - Remove finesMode 'test')\n"; +} # SEE bug 13068 # if there is anything in the atomicupdate, read and execute it. -- 2.20.1