Corrected another silly mistake: extra comma before closing parenthesis.

This commit is contained in:
defacer 2004-06-01 13:02:13 +00:00
parent 61ddaf3bce
commit 10e5d7c19b

View 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';
# --------------------------------------------------------