Fix for dumb error (extra comma)

This commit is contained in:
defacer 2004-06-01 07:45:18 +00:00
parent 5bb8c192b1
commit c9114c35e5

View File

@ -123,7 +123,7 @@ function forum_upgrade($oldversion) {
`postid` int(11) unsigned default 0 NOT NULL,
PRIMARY KEY (`id`),
KEY `user` (userid),
KEY `post` (postid),
KEY `post` (postid)
) TYPE=MyISAM COMMENT='For keeping track of posts that will be mailed in digest form';");
}