]> git.mjollnir.org Git - moodle.git/commitdiff
Corrected another silly mistake: extra comma before closing parenthesis.
authordefacer <defacer>
Tue, 1 Jun 2004 13:02:13 +0000 (13:02 +0000)
committerdefacer <defacer>
Tue, 1 Jun 2004 13:02:13 +0000 (13:02 +0000)
mod/forum/db/mysql.sql

index 249066b7243b874e64f7bcf7cd72161439067cf9..6b542a97efd611fb8ffda9043ea383fd63cdc56b 100644 (file)
@@ -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';
 # --------------------------------------------------------