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

     1  CREATE TABLE "users_replies" (
     2  	`rid` serial not null,
     3  	`uid` 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  	`ip` varchar (200) DEFAULT '' not null,
    11  	primary key(`rid`)
    12  );