From d8fdd6d7dfc043ec97d577e633323827b7b8040f Mon Sep 17 00:00:00 2001 From: Graham Knop Date: Tue, 24 Mar 2009 15:21:53 +0000 Subject: [PATCH] fix case sensitivity on image table changes --- docs/upgrades/upgrade_7.7.0-7.7.1.pl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/upgrades/upgrade_7.7.0-7.7.1.pl b/docs/upgrades/upgrade_7.7.0-7.7.1.pl index ade60ff83..9010edbc3 100644 --- a/docs/upgrades/upgrade_7.7.0-7.7.1.pl +++ b/docs/upgrades/upgrade_7.7.0-7.7.1.pl @@ -64,10 +64,10 @@ sub addRssLimit { #---------------------------------------------------------------------------- sub addImageAnnotation { my $session = shift; - print "\tAdding annotations to imageAsset table, if needed... \n" unless $quiet; - my $sth = $session->db->read('describe imageAsset annotations'); + print "\tAdding annotations to ImageAsset table, if needed... \n" unless $quiet; + my $sth = $session->db->read('describe ImageAsset annotations'); if (! defined $sth->hashRef) { - $session->db->write("alter table imageAsset add column annotations mediumtext"); + $session->db->write("alter table ImageAsset add column annotations mediumtext"); } print "Done.\n" unless $quiet; }