78fbbcda21
Optimise mysql adapter. Add TokenScope to mysql adapter. Add SimpleBulkInsert() to installer. Optimise panel.Plugins() route.
8 lines
213 B
SQL
8 lines
213 B
SQL
CREATE TABLE `conversations_posts`(
|
|
`pid` int not null AUTO_INCREMENT,
|
|
`cid` int not null,
|
|
`createdBy` int not null,
|
|
`body` varchar(50) not null,
|
|
`post` varchar(50) DEFAULT '' not null,
|
|
primary key(`pid`)
|
|
); |