gosora/schema/mysql/query_conversations.sql
Azareal 78fbbcda21 Optimise template generator.
Optimise mysql adapter.
Add TokenScope to mysql adapter.
Add SimpleBulkInsert() to installer.
Optimise panel.Plugins() route.
2021-04-30 08:33:02 +10:00

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`)
);