Bug 5877 DBrev numbering
authorPaul Poulain <paul.poulain@biblibre.com>
Fri, 2 Mar 2012 17:05:38 +0000 (18:05 +0100)
committerPaul Poulain <paul.poulain@biblibre.com>
Fri, 2 Mar 2012 17:05:38 +0000 (18:05 +0100)
installer/data/mysql/updatedatabase.pl
kohaversion.pl

index 1fb812d..803542a 100755 (executable)
@@ -4719,7 +4719,7 @@ if (C4::Context->preference("Version") < TransformToNum($DBversion)) {
     SetVersion ($DBversion);
 }
 
-$DBversion = "3.07.00.XXX";
+$DBversion = "3.07.00.018";
 if (C4::Context->preference("Version") < TransformToNum($DBversion)) {
     $dbh->do("CREATE TABLE pending_offline_operations ( operationid int(11) NOT NULL AUTO_INCREMENT, userid varchar(30) NOT NULL, branchcode varchar(10) NOT NULL, timestamp timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, action varchar(10) NOT NULL, barcode varchar(20) NOT NULL, cardnumber varchar(16) DEFAULT NULL, PRIMARY KEY (operationid) ) ENGINE=MyISAM DEFAULT CHARSET=utf8;");
     print "Upgrade to $DBversion done ( adding offline operations table )\n";
index dcebd4e..91ccd45 100644 (file)
@@ -16,7 +16,7 @@ the kohaversion is divided in 4 parts :
 use strict;
 
 sub kohaversion {
-    our $VERSION = '3.07.00.017';
+    our $VERSION = '3.07.00.018';
     # version needs to be set this way
     # so that it can be picked up by Makefile.PL
     # during install