removing database revision 124
authorHenri-Damien LAURENT <henridamien.laurent@biblibre.com>
Wed, 4 Nov 2009 09:02:17 +0000 (10:02 +0100)
committerHenri-Damien LAURENT <henridamien.laurent@biblibre.com>
Fri, 6 Nov 2009 11:33:15 +0000 (12:33 +0100)
Revisions 124 and 123 were the same

installer/data/mysql/updatedatabase.pl
kohaversion.pl

index 519fa4f..3dd7319 100755 (executable)
@@ -3153,21 +3153,11 @@ if (C4::Context->preference("Version") < TransformToNum($DBversion)) {
        ALTER TABLE aqbasketgroups ADD deliveryplace VARCHAR(10), deliverycomment VARCHAR(255);
        });
        
-    print "Upgrade to $DBversion done (isbd updated)\n";
+    print "Upgrade to $DBversion done (adding deliveryplace deliverycomment to basketgroups)\n";
     SetVersion ($DBversion);
 }
 
 $DBversion = "3.01.00.124";
-if (C4::Context->preference("Version") < TransformToNum($DBversion)) {
-       $dbh->do(qq{
-       ALTER TABLE aqbasketgroups ADD deliveryplace VARCHAR(10), deliverycomment VARCHAR(255);
-       });
-       
-    print "Upgrade to $DBversion done (isbd updated)\n";
-    SetVersion ($DBversion);
-}
-
-$DBversion = "3.01.00.125";
 if (C4::Context->preference("Version") < TransformToNum($DBversion)) {
        $dbh->do(qq{
        ALTER TABLE items ADD stocknumber VARCHAR(32) DEFAULT NULL COMMENT "stores the inventory number";
@@ -3192,7 +3182,7 @@ if (C4::Context->preference("Version") < TransformToNum($DBversion)) {
     SetVersion ($DBversion);
 }
 
-$DBversion = "3.01.00.126";
+$DBversion = "3.01.00.125";
 if (C4::Context->preference("Version") < TransformToNum($DBversion)) {
     $dbh->do("INSERT INTO systempreferences (variable,value,explanation,options,type) VALUES ('OrderPdfTemplate','','Uploads a PDF template','NULL','Upload')");
     $dbh->do("UPDATE systempreferences SET variable='OrderPdfFormat' WHERE variable='pdfformat'");
index 9c71819..de92273 100644 (file)
@@ -10,7 +10,7 @@
 use strict;
 
 sub kohaversion {
-    our $VERSION = '3.01.00.126';
+    our $VERSION = '3.01.00.125';
     # version needs to be set this way
     # so that it can be picked up by Makefile.PL
     # during install