78fbbcda21
Optimise mysql adapter. Add TokenScope to mysql adapter. Add SimpleBulkInsert() to installer. Optimise panel.Plugins() route.
8 lines
210 B
SQL
8 lines
210 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`)
|
|
); |