From 30dbc1c0a1c8b1b432181fe3d9ea9df8da6ea61a Mon Sep 17 00:00:00 2001 From: Paul Poulain Date: Fri, 21 Sep 2012 10:36:56 +0200 Subject: [PATCH] Bug 5335 follow-up DBRev number --- installer/data/mysql/updatedatabase.pl | 4 ++-- kohaversion.pl | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index 6cc4601757..21e6462134 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -5952,14 +5952,14 @@ if (C4::Context->preference("Version") < TransformToNum($DBversion)) { } -$DBversion = "3.09.00.XXX"; +$DBversion = "3.09.00.054"; if ( C4::Context->preference("Version") < TransformToNum($DBversion) ) { $dbh->do("ALTER TABLE aqorders CHANGE COLUMN gst gstrate DECIMAL(6,4) DEFAULT NULL"); print "Upgrade to $DBversion done (Change column name in aqorders gst --> gstrate)\n"; SetVersion($DBversion); } -$DBversion = "3.09.00.XXX"; +$DBversion = "3.09.00.055"; if ( C4::Context->preference("Version") < TransformToNum($DBversion) ) { $dbh->do("ALTER TABLE aqorders ADD discount float(6,4) DEFAULT NULL AFTER gstrate"); print "Upgrade to $DBversion done (Add discount field in aqorders table)\n"; diff --git a/kohaversion.pl b/kohaversion.pl index c17fb04a66..1dc44188dd 100644 --- a/kohaversion.pl +++ b/kohaversion.pl @@ -16,7 +16,7 @@ the kohaversion is divided in 4 parts : use strict; sub kohaversion { - our $VERSION = '3.09.00.053'; + our $VERSION = '3.09.00.055'; # version needs to be set this way # so that it can be picked up by Makefile.PL # during install -- 2.20.1