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

5 lines
122 B
SQL

CREATE TABLE `polls_options`(
`pollID` int not null,
`option` int DEFAULT 0 not null,
`votes` int DEFAULT 0 not null
);