From ca82394ab2ff60c03864a7efb916943356dd7c82 Mon Sep 17 00:00:00 2001 From: Doug Bell Date: Thu, 30 Apr 2009 20:00:33 +0000 Subject: [PATCH] mysql is wetodded --- docs/upgrades/upgrade_7.7.4-7.7.5.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 21df17dfd..89f53176a 100644 --- a/docs/upgrades/upgrade_7.7.4-7.7.5.pl +++ b/docs/upgrades/upgrade_7.7.4-7.7.5.pl @@ -246,8 +246,8 @@ sub addTemplatePacking { } print "\n\t\tAdding snippet packing..." unless $quiet; - $session->db->write("ALTER TABLE Snippet ADD snippetPacked LONGTEXT"); - $session->db->write("ALTER TABLE Snippet ADD usePacked INT(1)"); + $session->db->write("ALTER TABLE snippet ADD snippetPacked LONGTEXT"); + $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" );