2018-01-26 05:53:34 +00:00
|
|
|
CREATE TABLE `polls_votes` (
|
|
|
|
`pollID` int not null,
|
|
|
|
`uid` int not null,
|
|
|
|
`option` int DEFAULT 0 not null,
|
2018-10-07 01:33:03 +00:00
|
|
|
`castAt` datetime not null,
|
2018-01-26 05:53:34 +00:00
|
|
|
`ipaddress` varchar(200) DEFAULT '0.0.0.0.0' not null
|
|
|
|
) CHARSET=utf8mb4 COLLATE utf8mb4_general_ci;
|