DB revision 3.02.00.004 - general release of Koha 3.2.0
authorGalen Charlton <gmcharlt@gmail.com>
Fri, 22 Oct 2010 05:46:44 +0000 (01:46 -0400)
committerGalen Charlton <gmcharlt@gmail.com>
Fri, 22 Oct 2010 05:46:44 +0000 (01:46 -0400)
Signed-off-by: Galen Charlton <gmcharlt@gmail.com>
installer/data/mysql/updatedatabase.pl
kohaversion.pl

index 9b8332c..523c533 100755 (executable)
@@ -3793,6 +3793,12 @@ if (C4::Context->preference("Version") < TransformToNum($DBversion)) {
     SetVersion ($DBversion);
 }
 
+$DBversion = "3.02.00.004";
+if (C4::Context->preference("Version") < TransformToNum($DBversion)) {
+    print "Upgrade to $DBversion done (3.2.0 general release)\n";
+    SetVersion ($DBversion);
+}
+
 =item DropAllForeignKeys($table)
 
   Drop all foreign keys of the table $table
index eb91bd1..b919410 100644 (file)
@@ -10,7 +10,7 @@
 use strict;
 
 sub kohaversion {
-    our $VERSION = '3.02.00.003';
+    our $VERSION = '3.02.00.004';
     # version needs to be set this way
     # so that it can be picked up by Makefile.PL
     # during install