From: Nick Clemens Date: Fri, 14 Sep 2018 17:46:58 +0000 (+0000) Subject: Bug 19469: DBRev 18.06.028 X-Git-Url: http://git.rot13.org/?a=commitdiff_plain;h=5acdbb1d2dcb0bd2719f88aa6905c2cf91fab1db;p=koha.git Bug 19469: DBRev 18.06.028 Signed-off-by: Nick Clemens --- diff --git a/Koha.pm b/Koha.pm index f9b3e467f4..bc85f79936 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 = "18.06.00.027"; +$VERSION = "18.06.00.028"; sub version { return $VERSION; diff --git a/installer/data/mysql/atomicupdate/split_holds_queue.sql b/installer/data/mysql/atomicupdate/split_holds_queue.sql deleted file mode 100644 index f612dd44d1..0000000000 --- a/installer/data/mysql/atomicupdate/split_holds_queue.sql +++ /dev/null @@ -1,3 +0,0 @@ -INSERT IGNORE INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) VALUES -('HoldsSplitQueue','nothing','nothing|branch|itemtype|branch_itemtype','In the staff client, split the holds view by the given criteria','Choice'), -('HoldsSplitQueueNumbering', 'actual', 'actual|virtual', 'If the holds queue is split, decide if the acual priorities should be displayed', 'Choice'); diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index 0d06779f38..6d07b387cb 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -16385,6 +16385,17 @@ if( CheckVersion( $DBversion ) ) { print "Upgrade to $DBversion done (Bug 21235: Remove table services_throttle)\n"; } +$DBversion = '18.06.00.028'; +if( CheckVersion( $DBversion ) ) { + $dbh->do(q{ +INSERT IGNORE INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) VALUES +('HoldsSplitQueue','nothing','nothing|branch|itemtype|branch_itemtype','In the staff client, split the holds view by the given criteria','Choice'), +('HoldsSplitQueueNumbering', 'actual', 'actual|virtual', 'If the holds queue is split, decide if the acual priorities should be displayed', 'Choice'); +}); + SetVersion( $DBversion ); + print "Upgrade to $DBversion done (Bug 19469 - Add ability to split view of holds view on record by pickup library and/or itemtype)\n"; +} + # SEE bug 13068 # if there is anything in the atomicupdate, read and execute it.