2018-08-15 07:02:57 +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` timestamp not null,
|
|
|
|
`ip` varchar (200) DEFAULT '' not null
|
2018-01-26 05:53:34 +00:00
|
|
|
);
|