5 lines
123 B
MySQL
5 lines
123 B
MySQL
|
CREATE TABLE `polls_options` (
|
||
|
`pollID` int not null,
|
||
|
`option` int DEFAULT 0 not null,
|
||
|
`votes` int DEFAULT 0 not null
|
||
|
);
|