fixing some typos

This commit is contained in:
JT Smith 2003-07-19 14:26:20 +00:00
parent 1125ba0357
commit 09cea3af8f

View file

@ -40,7 +40,7 @@ create table forumPost (
create table forumPostAttachment ( create table forumPostAttachment (
forumPostAttachmentId int not null primary key, forumPostAttachmentId int not null primary key,
postId int not null, forumPostId int not null,
filename varchar(255) filename varchar(255)
); );
@ -61,13 +61,13 @@ create table forumRead (
forumPostId int not null, forumPostId int not null,
forumThreadId int not null, forumThreadId int not null,
lastRead int not null, lastRead int not null,
primary key (userId, postId) primary key (userId, forumPostId)
); );
create table forumBookmark ( create table forumBookmark (
userId int not null, userId int not null,
forumPostId int not null, forumPostId int not null,
primary key (userId, postId) primary key (userId, forumPostId)
); );
create table forumThreadSubscription ( create table forumThreadSubscription (