Bug 5811 - Bumping database version
authorChris Cormack <chrisc@catalyst.net.nz>
Thu, 3 Mar 2011 20:48:21 +0000 (09:48 +1300)
committerChris Cormack <chrisc@catalyst.net.nz>
Thu, 3 Mar 2011 20:48:21 +0000 (09:48 +1300)
installer/data/mysql/updatedatabase.pl
kohaversion.pl

index c297810..b4c51c0 100755 (executable)
@@ -4014,7 +4014,7 @@ if (C4::Context->preference("Version") < TransformToNum($DBversion)) {
     SetVersion ($DBversion);
 }
 
-$DBversion = '3.03.00.XXX';
+$DBversion = '3.03.00.020';
 if (C4::Context->preference("Version") < TransformToNum($DBversion)) {
     $dbh->do("INSERT INTO `systempreferences` (variable,value,explanation,options,type) VALUES ('AllowFineOverride','0','If on, staff will be able to issue books to patrons with fines greater than noissuescharge.','0','YesNo')");
     $dbh->do("INSERT INTO `systempreferences` (variable,value,explanation,options,type) VALUES ('AllFinesNeedOverride','1','If on, staff will be asked to override every fine, even if it is below noissuescharge.','0','YesNo')");
index 2d02d0c..d9a84cb 100644 (file)
@@ -16,7 +16,7 @@ the kohaversion is divided in 4 parts :
 use strict;
 
 sub kohaversion {
-    our $VERSION = '3.03.00.019';
+    our $VERSION = '3.03.00.020';
     # version needs to be set this way
     # so that it can be picked up by Makefile.PL
     # during install