fixing some typos
This commit is contained in:
parent
1125ba0357
commit
09cea3af8f
1 changed files with 3 additions and 3 deletions
|
|
@ -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 (
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue