2018-08-15 07:02:57 +00:00
|
|
|
CREATE TABLE "topics" (
|
2017-10-14 07:39:22 +00:00
|
|
|
`tid` serial not null,
|
|
|
|
`title` varchar (100) not null,
|
|
|
|
`content` text not null,
|
|
|
|
`parsed_content` text not null,
|
|
|
|
`createdAt` timestamp not null,
|
|
|
|
`lastReplyAt` timestamp not null,
|
|
|
|
`lastReplyBy` int not null,
|
2018-12-27 06:03:25 +00:00
|
|
|
`lastReplyID` int DEFAULT 0 not null,
|
2017-10-14 07:39:22 +00:00
|
|
|
`createdBy` int not null,
|
|
|
|
`is_closed` boolean DEFAULT 0 not null,
|
|
|
|
`sticky` boolean DEFAULT 0 not null,
|
|
|
|
`parentID` int DEFAULT 2 not null,
|
|
|
|
`ipaddress` varchar (200) DEFAULT '0.0.0.0.0' not null,
|
|
|
|
`postCount` int DEFAULT 1 not null,
|
|
|
|
`likeCount` int DEFAULT 0 not null,
|
2018-12-27 06:03:25 +00:00
|
|
|
`attachCount` int DEFAULT 0 not null,
|
2017-10-14 07:39:22 +00:00
|
|
|
`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` varchar (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` varchar (200) DEFAULT '' not null,
|
2019-02-23 06:29:19 +00:00
|
|
|
primary key(`tid`),
|
|
|
|
fulltext key(`content`)
|
2017-10-14 07:39:22 +00:00
|
|
|
);
|