8 lines
228 B
SQL
8 lines
228 B
SQL
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`)
|
|
); |