From: defacer Date: Tue, 1 Jun 2004 13:02:13 +0000 (+0000) Subject: Corrected another silly mistake: extra comma before closing parenthesis. X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=10e5d7c19be4a60efbc600808d0dfe9983e5e2ac;p=moodle.git Corrected another silly mistake: extra comma before closing parenthesis. --- diff --git a/mod/forum/db/mysql.sql b/mod/forum/db/mysql.sql index 249066b724..6b542a97ef 100644 --- a/mod/forum/db/mysql.sql +++ b/mod/forum/db/mysql.sql @@ -75,7 +75,7 @@ CREATE TABLE prefix_forum_queue ( postid int(10) unsigned default 0 NOT NULL, PRIMARY KEY (id), KEY user (userid), - KEY post (postid), + KEY post (postid) ) COMMENT='For keeping track of posts that will be mailed in digest form'; # --------------------------------------------------------