2021-04-29 22:33:02 +00:00
|
|
|
CREATE TABLE `conversations`(
|
2019-08-14 10:39:04 +00:00
|
|
|
`cid` int not null AUTO_INCREMENT,
|
|
|
|
`createdBy` int not null,
|
|
|
|
`createdAt` datetime not null,
|
|
|
|
`lastReplyAt` datetime not null,
|
|
|
|
`lastReplyBy` int not null,
|
|
|
|
primary key(`cid`)
|
|
|
|
);
|