From: Jared Camins-Esakov Date: Sat, 23 Mar 2013 03:56:51 +0000 (-0400) Subject: Bug 5343: Increment version number X-Git-Url: http://git.rot13.org/?a=commitdiff_plain;h=44d285b1c56503cffe20f5fe8a47e58363acb2d9;p=koha.git Bug 5343: Increment version number Database update for bug 5343 has been given version 3.11.00.116 --- diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index c8947c4023..a01be2b8a9 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -6984,8 +6984,8 @@ if ( CheckVersion($DBversion) ) { SetVersion ($DBversion); } -$DBversion = "3.11.00.XXX"; -if (C4::Context->preference("Version") < TransformToNum($DBversion)) { +$DBversion = "3.11.00.116"; +if ( CheckVersion($DBversion) ) { $dbh->do(q{ALTER TABLE aqorders DROP COLUMN serialid;}); $dbh->do(q{ALTER TABLE aqorders DROP COLUMN subscription;}); $dbh->do(q{ALTER TABLE aqorders ADD COLUMN subscriptionid INT(11) DEFAULT NULL;}); diff --git a/kohaversion.pl b/kohaversion.pl index 40292c1e1d..1d37e96d1a 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.11.00.115'; + our $VERSION = '3.11.00.116'; # version needs to be set this way # so that it can be picked up by Makefile.PL # during install