bug 4989: set DB rev to 145
authorGalen Charlton <gmcharlt@gmail.com>
Thu, 22 Jul 2010 23:27:44 +0000 (19:27 -0400)
committerGalen Charlton <gmcharlt@gmail.com>
Thu, 22 Jul 2010 23:27:44 +0000 (19:27 -0400)
Signed-off-by: Galen Charlton <gmcharlt@gmail.com>
installer/data/mysql/updatedatabase.pl
kohaversion.pl

index 065ad82..a0b5c4a 100755 (executable)
@@ -3694,12 +3694,13 @@ if (C4::Context->preference('Version') < TransformToNum($DBversion)){
     SetVersion ($DBversion);
 }
 
-$DBversion = "3.02.00.025";
+$DBversion = "3.01.00.145";
 if (C4::Context->preference("Version") < TransformToNum($DBversion)) {
     $dbh->do("ALTER TABLE borrowers ADD KEY `guarantorid` (guarantorid);");
     print "Upgrade to $DBversion done (Add index on guarantorid)\n";
     SetVersion ($DBversion);
 }
+
 =item DropAllForeignKeys($table)
 
   Drop all foreign keys of the table $table
index 26ee160..63b6d31 100644 (file)
@@ -11,7 +11,7 @@ use strict;
 
 sub kohaversion {
 
-    our $VERSION = '3.01.00.144';
+    our $VERSION = '3.01.00.145';
 
     # version needs to be set this way
     # so that it can be picked up by Makefile.PL