DBRev 16.11.00.000
authorKyle M Hall <kyle@bywatersolutions.com>
Tue, 22 Nov 2016 12:14:00 +0000 (12:14 +0000)
committerKyle M Hall <kyle@bywatersolutions.com>
Tue, 22 Nov 2016 17:48:00 +0000 (17:48 +0000)
Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>

Koha.pm
installer/data/mysql/updatedatabase.pl

diff --git a/Koha.pm b/Koha.pm
index c475228..f3c5278 100644 (file)
--- a/Koha.pm
+++ b/Koha.pm
@@ -29,7 +29,7 @@ use vars qw{ $VERSION };
 # - #4 : the developer version. The 4th number is the database subversion.
 #        used by developers when the database changes. updatedatabase take care of the changes itself
 #        and is automatically called by Auth.pm when needed.
-$VERSION = "16.06.00.050";
+$VERSION = "16.11.00.000";
 
 sub version {
     return $VERSION;
index e07693a..9b77f8d 100755 (executable)
@@ -13687,6 +13687,12 @@ if ( CheckVersion($DBversion) ) {
     SetVersion($DBversion);
 }
 
+$DBversion = "16.11.00.000";
+if ( CheckVersion($DBversion) ) {
+    print "Upgrade to $DBversion done (Koha 16.11)\n";
+    SetVersion($DBversion);
+}
+
 # DEVELOPER PROCESS, search for anything to execute in the db_update directory
 # SEE bug 13068
 # if there is anything in the atomicupdate, read and execute it.