From b06e75903ad71a582a81df6f2709bfc3230f936b Mon Sep 17 00:00:00 2001 From: Jack Polgar Date: Sat, 20 Apr 2013 02:11:34 +1000 Subject: [PATCH] Fixed issue with 3.2 upgrade queries. "ALERT TABLE" ? wat --- install/upgrade.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/upgrade.php b/install/upgrade.php index 1687d6286..5a9f7cad9 100644 --- a/install/upgrade.php +++ b/install/upgrade.php @@ -192,7 +192,7 @@ if (DB_VER < 30200) { // Add tasks column to tickets table $db->query(" - ALERT TABLE `" . $db->prefix . "tickets` ADD COLUMN `tasks` longtext + ALTER TABLE `" . $db->prefix . "tickets` ADD COLUMN `tasks` longtext AFTER `votes`; ");