8 lines
201 B
MySQL
8 lines
201 B
MySQL
|
CREATE TABLE "conversations" (
|
||
|
`cid` serial not null,
|
||
|
`createdBy` int not null,
|
||
|
`createdAt` timestamp not null,
|
||
|
`lastReplyAt` timestamp not null,
|
||
|
`lastReplyBy` int not null,
|
||
|
primary key(`cid`)
|
||
|
);
|