From 10d9c7101274d2a303281eeee1b59d9f9e6b892f 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: Update DB rev (3.22.09.003) Signed-off-by: Julian Maurice --- 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 3352bc29db..2e9084956a 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.22.09.002"; +$VERSION = "3.22.09.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 d4b6d55dc0..4361688c7e 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -11689,6 +11689,25 @@ if ( CheckVersion($DBversion) ) { SetVersion($DBversion); } +$DBversion = '3.22.09.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 # if there is anything in the atomicupdate, read and execute it. -- 2.39.5