Bug 11249: DBRev 3.15.00.006
authorGalen Charlton <gmc@esilibrary.com>
Tue, 17 Dec 2013 15:32:17 +0000 (15:32 +0000)
committerGalen Charlton <gmc@esilibrary.com>
Tue, 17 Dec 2013 15:32:17 +0000 (15:32 +0000)
Signed-off-by: Galen Charlton <gmc@esilibrary.com>
installer/data/mysql/updatedatabase.pl
kohaversion.pl

index c2f132e..3120513 100755 (executable)
@@ -7831,7 +7831,7 @@ if ( CheckVersion($DBversion) ) {
    SetVersion ($DBversion);
 }
 
-$DBversion = "3.15.00.XXX";
+$DBversion = "3.15.00.006";
 if(CheckVersion($DBversion)) {
     $dbh->do(q{
         ALTER TABLE `borrowers`
@@ -7839,7 +7839,7 @@ if(CheckVersion($DBversion)) {
         ADD KEY `firstname_idx` (`firstname`(255)),
         ADD KEY `othernames_idx` (`othernames`(255))
     });
-    print "Upgrade to $DBversion done (Bug 11249 - Add db indexes on borrowers names)\n";
+    print "Upgrade to $DBversion done (Bug 11249 - Add DB indexes on borrower names)\n";
     SetVersion($DBversion);
 }
 
index fe7fa1b..f0d6bce 100644 (file)
@@ -16,7 +16,7 @@ the kohaversion is divided in 4 parts :
 use strict;
 
 sub kohaversion {
-    our $VERSION = '3.15.00.005';
+    our $VERSION = '3.15.00.006';
     # version needs to be set this way
     # so that it can be picked up by Makefile.PL
     # during install