gosora/schema/mysql/query_polls_votes.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

7 lines
220 B
SQL

CREATE TABLE `polls_votes`(
`pollID` int not null,
`uid` int not null,
`option` int DEFAULT 0 not null,
`castAt` datetime not null,
`ip` varchar(200) DEFAULT '' not null
) CHARSET=utf8mb4 COLLATE utf8mb4_general_ci;