bug 8431 follow-up DBRev number
authorPaul Poulain <paul.poulain@biblibre.com>
Thu, 13 Sep 2012 09:22:01 +0000 (11:22 +0200)
committerPaul Poulain <paul.poulain@biblibre.com>
Thu, 13 Sep 2012 09:22:01 +0000 (11:22 +0200)
+ removing useless ` in DB columns

installer/data/mysql/updatedatabase.pl
kohaversion.pl

index b0c360e..7decbec 100755 (executable)
@@ -5717,7 +5717,7 @@ if (C4::Context->preference("Version") < TransformToNum($DBversion)) {
 
 $DBversion ="3.09.00.038";
 if ( C4::Context->preference("Version") < TransformToNum($DBversion) ) {
-    $dbh->do("ALTER TABLE  `borrower_attributes` CHANGE  `attribute`  `attribute` VARCHAR( 255 ) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL");
+    $dbh->do("ALTER TABLE borrower_attributes CHANGE  attribute  attribute VARCHAR( 255 ) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL");
     print "Upgrade to $DBversion done (Increase the maximum size of a borrower attribute value)\n";
     SetVersion($DBversion);
 }
index 7348307..e0e1626 100644 (file)
@@ -16,7 +16,7 @@ the kohaversion is divided in 4 parts :
 use strict;
 
 sub kohaversion {
-    our $VERSION = '3.09.00.037';
+    our $VERSION = '3.09.00.038';
     # version needs to be set this way
     # so that it can be picked up by Makefile.PL
     # during install