removing database revision 124

Revisions 124 and 123 were the same
This commit is contained in:
Henri-Damien LAURENT 2009-11-04 10:02:17 +01:00
parent 50e8e5a33f
commit 239e890b9d
2 changed files with 3 additions and 13 deletions

View file

@ -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'");

View 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