5 lines
162 B
SQL
5 lines
162 B
SQL
CREATE TABLE `polls_voters` (
|
|
`pollID` int not null,
|
|
`uid` int not null,
|
|
`option` int DEFAULT 0 not null
|
|
) CHARSET=utf8mb4 COLLATE utf8mb4_general_ci; |