From 6f25627519a080d90068719a010ed228372a6060 Mon Sep 17 00:00:00 2001 From: Brendan A Gallagher Date: Mon, 7 Mar 2016 17:56:24 +0000 Subject: [PATCH] DBREV Bug 14694 - Make decreaseloanHighHolds more flexible --- Koha.pm | 2 +- installer/data/mysql/atomicupdate/bug_14694.sql | 3 --- installer/data/mysql/updatedatabase.pl | 9 +++++++++ 3 files changed, 10 insertions(+), 4 deletions(-) delete mode 100644 installer/data/mysql/atomicupdate/bug_14694.sql diff --git a/Koha.pm b/Koha.pm index 9dcb9a0174..a6a7d68876 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.037"; +$VERSION = "3.23.00.038"; sub version { return $VERSION; diff --git a/installer/data/mysql/atomicupdate/bug_14694.sql b/installer/data/mysql/atomicupdate/bug_14694.sql deleted file mode 100644 index e468b53b62..0000000000 --- a/installer/data/mysql/atomicupdate/bug_14694.sql +++ /dev/null @@ -1,3 +0,0 @@ -INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) VALUES -('decreaseLoanHighHoldsControl', 'static', 'static|dynamic', "Chooses between static and dynamic high holds checking", 'Choice'), -('decreaseLoanHighHoldsIgnoreStatuses', '', 'damaged|itemlost|notforloan|withdrawn', "Ignore items with these statuses for dynamic high holds checking", 'Choice'); diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index f8b5b32ae6..c6b777ba18 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -11996,6 +11996,15 @@ if ( C4::Context->preference("Version") < TransformToNum($DBversion) ) { SetVersion($DBversion); } +$DBversion = "3.23.00.038"; +if ( C4::Context->preference("Version") < TransformToNum($DBversion) ) { + $dbh->do(q{ + INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) VALUES ('decreaseLoanHighHoldsControl', 'static', 'static|dynamic', "Chooses between static and dynamic high holds checking", 'Choice'), ('decreaseLoanHighHoldsIgnoreStatuses', '', 'damaged|itemlost|notforloan|withdrawn', "Ignore items with these statuses for dynamic high holds checking", 'Choice'); + }); + print "Upgrade to $DBversion done (Bug 14694 - Make decreaseloanHighHolds more flexible)\n"; + SetVersion($DBversion); + } + # DEVELOPER PROCESS, search for anything to execute in the db_update directory # SEE bug 13068 # if there is anything in the atomicupdate, read and execute it. -- 2.39.2