Updating database number
authorChris Cormack <chrisc@catalyst.net.nz>
Sat, 9 Apr 2011 00:06:32 +0000 (12:06 +1200)
committerChris Cormack <chrisc@catalyst.net.nz>
Sat, 9 Apr 2011 00:06:32 +0000 (12:06 +1200)
installer/data/mysql/updatedatabase.pl
kohaversion.pl

index 2675de2..61bae05 100755 (executable)
@@ -4270,7 +4270,7 @@ if (C4::Context->preference("Version") < TransformToNum($DBversion)) {
     print "Upgrade to $DBversion done (Add state field to patron's addresses)\n";
 }
 
-$DBversion = '3.0X.XX.XXX';
+$DBversion = '3.03.00.048';
 if (C4::Context->preference("Version") < TransformToNum($DBversion)) {
     $dbh->do("ALTER TABLE branches ADD `branchstate` mediumtext AFTER `branchcity`;");
     print "Upgrade to $DBversion done (Add state to branch address)\n";
index 3ece202..c599a85 100644 (file)
@@ -16,7 +16,7 @@ the kohaversion is divided in 4 parts :
 use strict;
 
 sub kohaversion {
-    our $VERSION = '3.0X.XX.XXX';
+    our $VERSION = '3.03.00.048';
     # version needs to be set this way
     # so that it can be picked up by Makefile.PL
     # during install