From c69ff84bfb69983e4117ff42d4681fb6e3b67b19 Mon Sep 17 00:00:00 2001 From: Tomas Cohen Arazi Date: Thu, 4 Dec 2014 14:15:05 -0300 Subject: [PATCH] DBRev 3.19.00.000: keep moving Signed-off-by: Tomas Cohen Arazi Signed-off-by: scourret@gmail.com <2> http://bugs.koha-community.org/show_bug.cgi?id=12404 --- installer/data/mysql/updatedatabase.pl | 6 ++++++ kohaversion.pl | 2 +- 2 files changed, 7 insertions(+), 1 deletions(-) diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index 97cbf9f..cf17e0b 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -9579,6 +9579,12 @@ if ( CheckVersion($DBversion) ) { SetVersion ($DBversion); } +$DBversion = "3.19.00.000"; +if ( CheckVersion($DBversion) ) { + print "Upgrade to $DBversion done (there's life after 3.18)\n"; + SetVersion ($DBversion); +} + =head1 FUNCTIONS =head2 TableExists($table) diff --git a/kohaversion.pl b/kohaversion.pl index ea58959..1baec5f 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.18.00.000'; + our $VERSION = '3.19.00.000'; # version needs to be set this way # so that it can be picked up by Makefile.PL # during install -- 1.7.2.5