fixing version numbering from 71 to 72
authorJoshua Ferraro <jmf@liblime.com>
Tue, 22 Apr 2008 22:55:31 +0000 (17:55 -0500)
committerJoshua Ferraro <jmf@liblime.com>
Tue, 22 Apr 2008 22:55:31 +0000 (17:55 -0500)
installer/data/mysql/updatedatabase.pl
kohaversion.pl

index 9f9cad9..a8a6623 100755 (executable)
@@ -1305,20 +1305,7 @@ if (C4::Context->preference("Version") < TransformToNum($DBversion)) {
     SetVersion ($DBversion);
 }
 
-$DBversion = "3.00.00.070";
-if (C4::Context->preference("Version") < TransformToNum($DBversion)) {
-    $dbh->do(" ALTER TABLE `subscription` ADD `serialsadditems` TINYINT( 1 ) NOT NULL DEFAULT '0';");
-    # fill the new field with the previous systempreference value, then drop the syspref
-    my $sth = $dbh->prepare("SELECT value FROM systempreferences WHERE variable='serialsadditems'");
-    $sth->execute;
-    my ($serialsadditems) = $sth->fetchrow();
-    $dbh->do("UPDATE subscription SET serialsadditems=$serialsadditems");
-    $dbh->do("DELETE FROM systempreferences WHERE variable='serialsadditems'");
-    print "Upgrade to $DBversion done ( moving serialsadditems from syspref to subscription )\n";
-    SetVersion ($DBversion);
-}
-
-$DBversion = "3.00.00.071";
+$DBversion = "3.00.00.072";
 if (C4::Context->preference("Version") < TransformToNum($DBversion)) {
     $dbh->do("ALTER TABLE labels_conf ADD COLUMN formatstring VARCHAR(64) DEFAULT NULL;");
        print "Upgrade to $DBversion done ( Adding format string to labels generator. )\n";
index c92a670..5d949cf 100644 (file)
@@ -10,7 +10,7 @@
 use strict;
 
 sub kohaversion {
-    our $VERSION = "3.00.00.071";
+    our $VERSION = "3.00.00.072";
     # version needs to be set this way
     # so that it can be picked up by Makefile.PL
     # during install