github.com/Azareal/Gosora@v0.0.0-20210729070923-553e66b59003/schema/mysql/query_replies.sql (about)

     1  CREATE TABLE `replies`(
     2  	`rid` int not null AUTO_INCREMENT,
     3  	`tid` int not null,
     4  	`content` text not null,
     5  	`parsed_content` text not null,
     6  	`createdAt` datetime not null,
     7  	`createdBy` int not null,
     8  	`lastEdit` int DEFAULT 0 not null,
     9  	`lastEditBy` int DEFAULT 0 not null,
    10  	`lastUpdated` datetime not null,
    11  	`ip` varchar(200) DEFAULT '' not null,
    12  	`likeCount` int DEFAULT 0 not null,
    13  	`attachCount` int DEFAULT 0 not null,
    14  	`words` int DEFAULT 1 not null,
    15  	`actionType` varchar(20) DEFAULT '' not null,
    16  	`poll` int DEFAULT 0 not null,
    17  	primary key(`rid`),
    18  	fulltext key(`content`)
    19  ) CHARSET=utf8mb4 COLLATE utf8mb4_general_ci;