working on new discussion system

This commit is contained in:
JT Smith 2003-07-13 03:28:03 +00:00
parent b84c79ab96
commit a4d391b52a
6 changed files with 81 additions and 52 deletions

View file

@ -59,6 +59,7 @@ create table forumThread (
create table forumRead (
userId int not null,
forumPostId int not null,
forumThreadId int not null,
lastRead int not null,
primary key (userId, postId)
);