github.com/Azareal/Gosora@v0.0.0-20210729070923-553e66b59003/schema/pgsql/query_replies.sql (about) 1 CREATE TABLE "replies" ( 2 `rid` serial not null, 3 `tid` int not null, 4 `content` text not null, 5 `parsed_content` text not null, 6 `createdAt` timestamp not null, 7 `createdBy` int not null, 8 `lastEdit` int DEFAULT 0 not null, 9 `lastEditBy` int DEFAULT 0 not null, 10 `lastUpdated` timestamp 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 );