Updating the DB Rev for Bug 15736 - Add a preference to control whether all items...
authorBrendan Gallagher <brendan@bywatersolutions.com>
Mon, 22 Feb 2016 20:46:52 +0000 (20:46 +0000)
committerBrendan Gallagher <brendan@bywatersolutions.com>
Mon, 22 Feb 2016 20:46:52 +0000 (20:46 +0000)
Koha.pm
installer/data/mysql/updatedatabase.pl

diff --git a/Koha.pm b/Koha.pm
index f137b9b..1ff9cb9 100644 (file)
--- 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.020";
+$VERSION = "3.23.00.021";
 
 sub version {
     return $VERSION;
index ba4fee9..4baacb1 100755 (executable)
@@ -11763,6 +11763,16 @@ if ( CheckVersion($DBversion) ) {
     SetVersion($DBversion);
 }
 
+    $DBversion = "3.23.00.021";
+    if ( CheckVersion($DBversion) ) {
+    $dbh->do(q{
+    INSERT IGNORE INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) VALUES ('ShowAllCheckins', '0', '', 'Show all checkins', 'YesNo');
+    });
+
+    print "Upgrade to $DBversion done (Bug 15736 - Add a preference to control whether all items should be shown in checked-in items list)\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.