7 lines
166 B
MySQL
7 lines
166 B
MySQL
|
CREATE TABLE `polls` (
|
||
|
`pollID` serial not null,
|
||
|
`type` int DEFAULT 0 not null,
|
||
|
`options` json not null,
|
||
|
`votes` int DEFAULT 0 not null,
|
||
|
primary key(`pollID`)
|
||
|
);
|