From f55ac205bfc2c5f68fb173eaf6af45939de72639 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Fr=C3=A9d=C3=A9ric=20Demians?= Date: Fri, 24 Jun 2016 11:53:02 +0000 Subject: [PATCH] Bug 11490 - DBRev 16.05.02.002 MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Frédéric Demians --- Koha.pm | 2 +- .../data/mysql/atomicupdate/bug_11490.sql | 5 ----- installer/data/mysql/updatedatabase.pl | 19 +++++++++++++++++++ 3 files changed, 20 insertions(+), 6 deletions(-) delete mode 100644 installer/data/mysql/atomicupdate/bug_11490.sql diff --git a/Koha.pm b/Koha.pm index 9e710db701..7ee519b71d 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.05.02.001"; +$VERSION = "16.05.02.002"; 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 0449f87fec..877be6488e 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -12659,6 +12659,25 @@ if ( CheckVersion($DBversion) ) { SetVersion($DBversion); } +$DBversion = "16.05.02.002"; +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 # if there is anything in the atomicupdate, read and execute it. -- 2.39.5