From 2279a2fea05bc4d6e27b239f45c5d5733a37eef2 Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Fri, 24 Jun 2016 11:53:02 +0000 Subject: [PATCH] Bug 11490 - DBRev 16.06.00.003 Signed-off-by: Kyle M Hall --- Koha.pm | 2 +- .../data/mysql/atomicupdate/bug_11490.sql | 5 ----- installer/data/mysql/updatedatabase.pl | 18 ++++++++++++++++++ 3 files changed, 19 insertions(+), 6 deletions(-) delete mode 100644 installer/data/mysql/atomicupdate/bug_11490.sql diff --git a/Koha.pm b/Koha.pm index 52b62d7eaa..3860962b89 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 = "16.06.00.002"; +$VERSION = "16.06.00.003"; sub version { return $VERSION; diff --git a/installer/data/mysql/atomicupdate/bug_11490.sql b/installer/data/mysql/atomicupdate/bug_11490.sql deleted file mode 100644 index 6b2dee562d..0000000000 --- a/installer/data/mysql/atomicupdate/bug_11490.sql +++ /dev/null @@ -1,5 +0,0 @@ -INSERT IGNORE INTO systempreferences ( variable, value, options, explanation, type ) -SELECT 'MaxItemsToProcessForBatchMod', value, NULL, 'Process up to a given number of items in a single item modification batch.', 'Integer' FROM systempreferences WHERE variable='MaxItemsForBatch'; -INSERT IGNORE INTO systempreferences ( variable, value, options, explanation, type ) -SELECT 'MaxItemsToDisplayForBatchDel', value, NULL, 'Display up to a given number of items in a single item deletionbatch.', 'Integer' FROM systempreferences WHERE variable='MaxItemsForBatch'; -DELETE FROM systempreferences WHERE variable="MaxItemsForBatch"; diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index eb9d1f7174..3ce5e011be 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -12637,6 +12637,24 @@ if ( CheckVersion($DBversion) ) { SetVersion($DBversion); } +$DBversion = "16.06.00.003"; +if ( CheckVersion($DBversion) ) { + $dbh->do(q{ + INSERT IGNORE INTO systempreferences ( variable, value, options, explanation, type ) + SELECT 'MaxItemsToProcessForBatchMod', value, NULL, 'Process up to a given number of items in a single item modification batch.', 'Integer' FROM systempreferences WHERE variable='MaxItemsForBatch'; + }); + $dbh->do(q{ + INSERT IGNORE INTO systempreferences ( variable, value, options, explanation, type ) + SELECT 'MaxItemsToDisplayForBatchDel', value, NULL, 'Display up to a given number of items in a single item deletionbatch.', 'Integer' FROM systempreferences WHERE variable='MaxItemsForBatch'; + }); + $dbh->do(q{ + DELETE FROM systempreferences WHERE variable="MaxItemsForBatch"; + }); + + print "Upgrade to $DBversion done (Bug 11490 - MaxItemsForBatch should be split into two new prefs)\n"; + SetVersion($DBversion); +} + # DEVELOPER PROCESS, search for anything to execute in the db_update directory # SEE bug 13068 -- 2.39.5