2021-04-29 22:33:02 +00:00
|
|
|
CREATE TABLE `polls_votes`(
|
2022-02-21 03:16:15 +00:00
|
|
|
`pollID` int not null,
|
|
|
|
`uid` int not null,
|
|
|
|
`option` int DEFAULT 0 not null,
|
|
|
|
`castAt` datetime not null,
|
|
|
|
`ip` varchar(200) DEFAULT '' not null
|
2018-01-26 05:53:34 +00:00
|
|
|
) CHARSET=utf8mb4 COLLATE utf8mb4_general_ci;
|