7 lines
196 B
MySQL
7 lines
196 B
MySQL
|
CREATE TABLE `polls_votes` (
|
||
|
`pollID` int not null,
|
||
|
`uid` int not null,
|
||
|
`option` int DEFAULT 0 not null,
|
||
|
`castAt` timestamp not null,
|
||
|
`ipaddress` varchar (200) DEFAULT '0.0.0.0.0' not null
|
||
|
);
|