Bug 7587 follow-up: DBRev number + message changed a little bit
authorPaul Poulain <paul.poulain@biblibre.com>
Tue, 13 Mar 2012 14:43:24 +0000 (15:43 +0100)
committerPaul Poulain <paul.poulain@biblibre.com>
Tue, 13 Mar 2012 14:43:24 +0000 (15:43 +0100)
installer/data/mysql/updatedatabase.pl
kohaversion.pl

index 72cbedf..3ade8bf 100755 (executable)
@@ -4892,7 +4892,7 @@ if ( C4::Context->preference("Version") < TransformToNum($DBversion) ) {
     SetVersion($DBversion);
 }
 
-$DBversion = "3.07.00.XXX";
+$DBversion = "3.07.00.025";
 if ( C4::Context->preference("Version") < TransformToNum($DBversion) ) {
     $dbh->do( q|DROP TABLE bibliocoverimage;| );
     $dbh->do(
@@ -4906,7 +4906,7 @@ if ( C4::Context->preference("Version") < TransformToNum($DBversion) ) {
           CONSTRAINT bibliocoverimage_fk1 FOREIGN KEY (biblionumber) REFERENCES biblio (biblionumber) ON DELETE CASCADE ON UPDATE CASCADE
           ) ENGINE=InnoDB DEFAULT CHARSET=utf8;|
     );
-    print "Upgrade to $DBversion done (Correct table name for local cover images [please disregard any error messages])\n";
+    print "Upgrade to $DBversion done (Correct table name for local cover images [please disregard the following error messages: \"Unknown table 'bibliocoverimage'...\" and \"Table 'biblioimages' already exists...\"])\n";
     SetVersion($DBversion);
 }
 
index 328624a..41ad3bf 100644 (file)
@@ -16,7 +16,7 @@ the kohaversion is divided in 4 parts :
 use strict;
 
 sub kohaversion {
-    our $VERSION = '3.07.00.024';
+    our $VERSION = '3.07.00.025';
     # version needs to be set this way
     # so that it can be picked up by Makefile.PL
     # during install