1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-08 23:56:58 +02:00

More forum work

This commit is contained in:
mcfly
2008-11-26 04:00:36 +00:00
parent ec611b995b
commit f45124fc14
5 changed files with 58 additions and 25 deletions

View File

@@ -58,9 +58,9 @@ CREATE TABLE forum_post (
CREATE TABLE forum_track (
`track_userid` int(10) unsigned NOT NULL,
`track_threadid` int(10) unsigned NOT NULL,
`track_thread` int(10) unsigned NOT NULL,
PRIMARY KEY (`track_userid`,`track_threadid`),
KEY `track_userid` (`track_userid`),
KEY `track_threadid` (`track_threadid`)
KEY `track_thread` (`track_thread`)
) Type=MyISAM;