2017-10-14 07:39:22 +00:00
|
|
|
CREATE TABLE [topics] (
|
|
|
|
[tid] int not null IDENTITY,
|
|
|
|
[title] nvarchar (100) not null,
|
|
|
|
[content] nvarchar (MAX) not null,
|
|
|
|
[parsed_content] nvarchar (MAX) not null,
|
|
|
|
[createdAt] datetime not null,
|
|
|
|
[lastReplyAt] datetime not null,
|
|
|
|
[lastReplyBy] int not null,
|
|
|
|
[createdBy] int not null,
|
|
|
|
[is_closed] bit DEFAULT 0 not null,
|
|
|
|
[sticky] bit DEFAULT 0 not null,
|
|
|
|
[parentID] int DEFAULT 2 not null,
|
|
|
|
[ipaddress] nvarchar (200) DEFAULT '0.0.0.0.0' not null,
|
|
|
|
[postCount] int DEFAULT 1 not null,
|
|
|
|
[likeCount] int DEFAULT 0 not null,
|
|
|
|
[words] int DEFAULT 0 not null,
|
2017-12-24 07:38:46 +00:00
|
|
|
[views] int DEFAULT 0 not null,
|
2017-10-14 07:39:22 +00:00
|
|
|
[css_class] nvarchar (100) DEFAULT '' not null,
|
2018-01-25 04:57:33 +00:00
|
|
|
[poll] int DEFAULT 0 not null,
|
2017-10-14 07:39:22 +00:00
|
|
|
[data] nvarchar (200) DEFAULT '' not null,
|
|
|
|
primary key([tid])
|
|
|
|
);
|