Bug 5356 follow-up DBRev number
authorPaul Poulain <paul.poulain@biblibre.com>
Mon, 24 Sep 2012 19:32:48 +0000 (21:32 +0200)
committerPaul Poulain <paul.poulain@biblibre.com>
Mon, 24 Sep 2012 19:32:48 +0000 (21:32 +0200)
installer/data/mysql/updatedatabase.pl
kohaversion.pl

index 9444577..eb45fb2 100755 (executable)
@@ -5974,11 +5974,11 @@ if ( C4::Context->preference("Version") < TransformToNum($DBversion) ) {
 }
 
 
-$DBversion = "3.09.00.XXX";
+$DBversion = "3.09.00.057";
 if ( C4::Context->preference("Version") < TransformToNum($DBversion) ) {
     $dbh->do("ALTER TABLE aqbasket ADD deliveryplace VARCHAR(10) default NULL AFTER basketgroupid;");
     $dbh->do("ALTER TABLE aqbasket ADD billingplace VARCHAR(10) default NULL AFTER deliveryplace;");
-    print "Upgrade to $DBversion done (Added billingplace, deliveryplace to the aqbasket table)\n";
+    print "Upgrade to $DBversion done (Bug 5356: Added billingplace, deliveryplace to the aqbasket table)\n";
     SetVersion($DBversion);
 }
 
index 001f59d..1eefc92 100644 (file)
@@ -16,7 +16,7 @@ the kohaversion is divided in 4 parts :
 use strict;
 
 sub kohaversion {
-    our $VERSION = '3.09.00.056';
+    our $VERSION = '3.09.00.057';
     # version needs to be set this way
     # so that it can be picked up by Makefile.PL
     # during install