From 201f6e4e0be7afe5eed83c23cb4a051a5b75df74 Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Thu, 31 Dec 2015 16:01:26 +0000 Subject: [PATCH] Bug 13592 - DBrev 3.23.00.011 Signed-off-by: Kyle M Hall --- Koha.pm | 2 +- .../atomicupdate/bug_13592_add_HoldFeeMode_pref.sql | 1 - installer/data/mysql/updatedatabase.pl | 10 ++++++++++ 3 files changed, 11 insertions(+), 2 deletions(-) delete mode 100644 installer/data/mysql/atomicupdate/bug_13592_add_HoldFeeMode_pref.sql diff --git a/Koha.pm b/Koha.pm index 54074d25e5..482ef0eff5 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 = "3.23.00.010"; +$VERSION = "3.23.00.011"; sub version { return $VERSION; diff --git a/installer/data/mysql/atomicupdate/bug_13592_add_HoldFeeMode_pref.sql b/installer/data/mysql/atomicupdate/bug_13592_add_HoldFeeMode_pref.sql deleted file mode 100644 index 6fe043cb9f..0000000000 --- a/installer/data/mysql/atomicupdate/bug_13592_add_HoldFeeMode_pref.sql +++ /dev/null @@ -1 +0,0 @@ -INSERT IGNORE INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) VALUES ('HoldFeeMode','not_always','always|not_always','Set the hold fee mode','Choice'); diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index cb6e831fb7..4da6379e49 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -11604,6 +11604,16 @@ if ( CheckVersion($DBversion) ) { SetVersion($DBversion); } +$DBversion = "3.23.00.011"; +if ( CheckVersion($DBversion) ) { + $dbh->do(q{ + INSERT IGNORE INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) VALUES ('HoldFeeMode','not_always','always|not_always','Set the hold fee mode','Choice') + }); + + print "Upgrade to $DBversion done (Bug 13592 - Hold fee not being applied on placing a hold)\n"; + SetVersion($DBversion); +} + # DEVELOPER PROCESS, search for anything to execute in the db_update directory # SEE bug 13068 -- 2.39.5