Bug 5335 follow-up DBRev number
authorPaul Poulain <paul.poulain@biblibre.com>
Fri, 21 Sep 2012 08:36:56 +0000 (10:36 +0200)
committerPaul Poulain <paul.poulain@biblibre.com>
Fri, 21 Sep 2012 12:49:18 +0000 (14:49 +0200)
Signed-off-by: Paul Poulain <paul.poulain@biblibre.com>
installer/data/mysql/updatedatabase.pl
kohaversion.pl

index 6cc4601..21e6462 100755 (executable)
@@ -5952,14 +5952,14 @@ if (C4::Context->preference("Version") < TransformToNum($DBversion)) {
 }
 
 
-$DBversion = "3.09.00.XXX";
+$DBversion = "3.09.00.054";
 if ( C4::Context->preference("Version") < TransformToNum($DBversion) ) {
     $dbh->do("ALTER TABLE aqorders CHANGE COLUMN gst gstrate DECIMAL(6,4)  DEFAULT NULL");
     print "Upgrade to $DBversion done (Change column name in aqorders gst --> gstrate)\n";
     SetVersion($DBversion);
 }
 
-$DBversion = "3.09.00.XXX";
+$DBversion = "3.09.00.055";
 if ( C4::Context->preference("Version") < TransformToNum($DBversion) ) {
     $dbh->do("ALTER TABLE aqorders ADD discount float(6,4) DEFAULT NULL AFTER gstrate");
     print "Upgrade to $DBversion done (Add discount field in aqorders table)\n";
index c17fb04..1dc4418 100644 (file)
@@ -16,7 +16,7 @@ the kohaversion is divided in 4 parts :
 use strict;
 
 sub kohaversion {
-    our $VERSION = '3.09.00.053';
+    our $VERSION = '3.09.00.055';
     # version needs to be set this way
     # so that it can be picked up by Makefile.PL
     # during install