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

     1  CREATE TABLE `conversations_posts`(
     2  	`pid` int not null AUTO_INCREMENT,
     3  	`cid` int not null,
     4  	`createdBy` int not null,
     5  	`body` varchar(50) not null,
     6  	`post` varchar(50) DEFAULT '' not null,
     7  	primary key(`pid`)
     8  );