From 609dad4014b82a37bf334739906aec3e893020bf Mon Sep 17 00:00:00 2001 From: Paul Poulain Date: Thu, 13 Sep 2012 11:22:01 +0200 Subject: [PATCH] bug 8431 follow-up DBRev number + removing useless ` in DB columns --- installer/data/mysql/updatedatabase.pl | 2 +- kohaversion.pl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index b0c360ef8b..7decbec08b 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -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); } diff --git a/kohaversion.pl b/kohaversion.pl index 7348307874..e0e162693a 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.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 -- 2.39.2