From 09cea3af8f4c2a907f00659e218661d366f80673 Mon Sep 17 00:00:00 2001 From: JT Smith Date: Sat, 19 Jul 2003 14:26:20 +0000 Subject: [PATCH] fixing some typos --- docs/upgrades/upgrade_5.4.2-5.5.0.sql | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/upgrades/upgrade_5.4.2-5.5.0.sql b/docs/upgrades/upgrade_5.4.2-5.5.0.sql index 59a6bba80..781b547cd 100644 --- a/docs/upgrades/upgrade_5.4.2-5.5.0.sql +++ b/docs/upgrades/upgrade_5.4.2-5.5.0.sql @@ -40,7 +40,7 @@ create table forumPost ( create table forumPostAttachment ( forumPostAttachmentId int not null primary key, - postId int not null, + forumPostId int not null, filename varchar(255) ); @@ -61,13 +61,13 @@ create table forumRead ( forumPostId int not null, forumThreadId int not null, lastRead int not null, - primary key (userId, postId) + primary key (userId, forumPostId) ); create table forumBookmark ( userId int not null, forumPostId int not null, - primary key (userId, postId) + primary key (userId, forumPostId) ); create table forumThreadSubscription (