8 lines
211 B
MySQL
8 lines
211 B
MySQL
|
CREATE TABLE `conversations` (
|
||
|
`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`)
|
||
|
);
|