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

     1  CREATE TABLE `users_replies`(
     2  	`rid` int not null AUTO_INCREMENT,
     3  	`uid` 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  	`ip` varchar(200) DEFAULT '' not null,
    11  	primary key(`rid`)
    12  ) CHARSET=utf8mb4 COLLATE utf8mb4_general_ci;