2021-04-29 22:33:02 +00:00
|
|
|
CREATE TABLE `conversations_posts`(
|
2019-08-14 10:39:04 +00:00
|
|
|
`pid` int not null AUTO_INCREMENT,
|
|
|
|
`cid` int not null,
|
|
|
|
`createdBy` int not null,
|
|
|
|
`body` varchar(50) not null,
|
|
|
|
`post` varchar(50) DEFAULT '' not null,
|
|
|
|
primary key(`pid`)
|
|
|
|
);
|