gosora/schema/mysql/query_likes.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
237 B
SQL

CREATE TABLE `likes`(
`weight` tinyint DEFAULT 1 not null,
`targetItem` int not null,
`targetType` varchar(50) DEFAULT 'replies' not null,
`sentBy` int not null,
`createdAt` datetime not null,
`recalc` tinyint DEFAULT 0 not null
);