From 622154189b1c34df81e802e634b8ea1b3c2079f7 Mon Sep 17 00:00:00 2001 From: Doug Bell Date: Thu, 30 Apr 2009 20:05:40 +0000 Subject: [PATCH] mysql is wetodded --- docs/upgrades/upgrade_7.7.4-7.7.5.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/upgrades/upgrade_7.7.4-7.7.5.pl b/docs/upgrades/upgrade_7.7.4-7.7.5.pl index 89f53176a..8944c11d3 100644 --- a/docs/upgrades/upgrade_7.7.4-7.7.5.pl +++ b/docs/upgrades/upgrade_7.7.4-7.7.5.pl @@ -250,7 +250,7 @@ sub addTemplatePacking { $session->db->write("ALTER TABLE snippet ADD usePacked INT(1)"); print "\n\t\tPre-packing all snippets, this may take a while..." unless $quiet; - my $sth = $session->db->read( "SELECT DISTINCT(assetId) FROM Snippet" ); + my $sth = $session->db->read( "SELECT DISTINCT(assetId) FROM snippet" ); while ( my ($assetId) = $sth->array ) { my $asset = WebGUI::Asset->newByDynamicClass( $session, $assetId ); next unless $asset;